From 841061e55f920bc7f26c8403c69848e613c16dec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20MARABESE?= Date: Wed, 18 Oct 2023 19:27:33 +0200 Subject: [PATCH] test(k8s): add a private network to every kapsule cluster in the tests --- scaleway/data_source_k8s_cluster_test.go | 5 + scaleway/resource_k8s_cluster.go | 56 +- scaleway/resource_k8s_cluster_test.go | 118 +- scaleway/resource_k8s_pool_test.go | 236 +- ...ata-source-k8s-cluster-basic.cassette.yaml | 2145 +++-- .../k8s-cluster-auto-upgrade.cassette.yaml | 1297 +++- .../k8s-cluster-autoscaling.cassette.yaml | 442 +- .../testdata/k8s-cluster-basic.cassette.yaml | 519 +- .../k8s-cluster-multicloud.cassette.yaml | 1293 +++- .../testdata/k8s-cluster-oidc.cassette.yaml | 430 +- .../k8s-cluster-pool-basic.cassette.yaml | 3164 ++++++-- ...8s-cluster-pool-kubelet-args.cassette.yaml | 2416 ++++-- ...cluster-pool-placement-group.cassette.yaml | 6869 ++++++++++++++--- ...cluster-pool-private-network.cassette.yaml | 1636 +++- ...ster-pool-public-ip-disabled.cassette.yaml | 2801 +++++-- .../k8s-cluster-pool-size.cassette.yaml | 1654 +++- ...-cluster-pool-upgrade-policy.cassette.yaml | 1809 +++-- .../k8s-cluster-pool-wait.cassette.yaml | 4307 ++++++++--- .../k8s-cluster-pool-zone.cassette.yaml | 1918 ++++- .../k8s-cluster-private-network.cassette.yaml | 628 +- .../k8s-cluster-type-change.cassette.yaml | 2509 +++--- 21 files changed, 26580 insertions(+), 9672 deletions(-) diff --git a/scaleway/data_source_k8s_cluster_test.go b/scaleway/data_source_k8s_cluster_test.go index d0f1fb797b..0fb1e44f3d 100644 --- a/scaleway/data_source_k8s_cluster_test.go +++ b/scaleway/data_source_k8s_cluster_test.go @@ -19,12 +19,17 @@ func TestAccScalewayDataSourceK8SCluster_Basic(t *testing.T) { Steps: []resource.TestStep{ { Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "main" { + name = "test-data-source-cluster" + } + resource "scaleway_k8s_cluster" "main" { name = "%s" version = "%s" cni = "cilium" tags = [ "terraform-test", "data_scaleway_k8s_cluster", "basic" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.main.id } resource "scaleway_k8s_pool" "default" { diff --git a/scaleway/resource_k8s_cluster.go b/scaleway/resource_k8s_cluster.go index 6c3b290ab5..4af8df1cbb 100644 --- a/scaleway/resource_k8s_cluster.go +++ b/scaleway/resource_k8s_cluster.go @@ -245,30 +245,40 @@ func resourceScalewayK8SCluster() *schema.Resource { }, func(ctx context.Context, diff *schema.ResourceDiff, i interface{}) error { if diff.HasChange("private_network_id") { - clusterType := diff.Get("type") - isKapsule := clusterType == "" || strings.HasPrefix(clusterType.(string), "kapsule") - if !isKapsule { - return fmt.Errorf("only Kapsule clusters support private networks") - } actual, planned := diff.GetChange("private_network_id") - if actual == "" { - // If no private network has been set yet, migrate the cluster in the Update function - return nil - } - if planned != "" { - _, plannedPNID, err := parseLocalizedID(planned.(string)) - if err != nil { - return err + clusterType := diff.Get("type").(string) + + switch { + // For Kosmos clusters + case strings.HasPrefix(clusterType, "multicloud"): + if planned != "" { + return fmt.Errorf("only Kapsule clusters support private networks") } - if plannedPNID == actual { - // If the private network ID is the same, do nothing + + // For Kapsule clusters + case clusterType == "" || strings.HasPrefix(clusterType, "kapsule"): + if actual == "" { + // If no private network has been set yet, migrate the cluster in the Update function return nil } - } - // Any other change will result in ForceNew - err := diff.ForceNew("private_network_id") - if err != nil { - return err + if planned != "" { + _, plannedPNID, err := parseLocalizedID(planned.(string)) + if err != nil { + return err + } + if plannedPNID == actual { + // If the private network ID is the same, do nothing + return nil + } + } + // Any other change will result in ForceNew + err := diff.ForceNew("private_network_id") + if err != nil { + return err + } + + default: + return fmt.Errorf("unknown cluster type %q", clusterType) } } return nil @@ -779,7 +789,11 @@ func resourceScalewayK8SClusterUpdate(ctx context.Context, d *schema.ResourceDat // Private Network changes //// if d.HasChange("private_network_id") { - actual, _ := d.GetChange("private_network_id") + actual, planned := d.GetChange("private_network_id") + if planned == "" && actual != "" { + // It's not possible to remove the private network anymore + return diag.FromErr(fmt.Errorf("it is only possible to change the private network attached to the cluster, but not to remove it")) + } if actual == "" { err = migrateToPrivateNetworkCluster(ctx, d, meta) if err != nil { diff --git a/scaleway/resource_k8s_cluster_test.go b/scaleway/resource_k8s_cluster_test.go index 18d491e09d..c3e2f0ca05 100644 --- a/scaleway/resource_k8s_cluster_test.go +++ b/scaleway/resource_k8s_cluster_test.go @@ -391,6 +391,8 @@ func TestAccScalewayK8SCluster_PrivateNetwork(t *testing.T) { latestK8SVersion := testAccScalewayK8SClusterGetLatestK8SVersion(tt) + clusterID := "" + resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) @@ -399,31 +401,24 @@ func TestAccScalewayK8SCluster_PrivateNetwork(t *testing.T) { CheckDestroy: testAccCheckScalewayK8SClusterDestroy(tt), Steps: []resource.TestStep{ { - Config: testAccCheckScalewayK8SClusterConfigPrivateNetworkNotLinked(latestK8SVersion), + Config: testAccCheckScalewayK8SClusterConfigPrivateNetworkLinked(latestK8SVersion), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.private_network"), testAccCheckScalewayVPCPrivateNetworkExists(tt, "scaleway_vpc_private_network.private_network"), - resource.TestCheckResourceAttr("scaleway_k8s_cluster.private_network", "private_network_id", ""), + testAccCheckScalewayK8sClusterPrivateNetworkID(tt, "scaleway_k8s_cluster.private_network", "scaleway_vpc_private_network.private_network"), + testAccCheckScalewayResourceIDPersisted("scaleway_k8s_cluster.private_network", &clusterID), ), }, { - Config: testAccCheckScalewayK8SClusterConfigPrivateNetworkLinked(latestK8SVersion), + Config: testAccCheckScalewayK8SClusterConfigPrivateNetworkChange(latestK8SVersion), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.private_network"), testAccCheckScalewayVPCPrivateNetworkExists(tt, "scaleway_vpc_private_network.private_network"), - testAccCheckScalewayK8sClusterPrivateNetworkID(tt, "scaleway_k8s_cluster.private_network", "scaleway_vpc_private_network.private_network"), + testAccCheckScalewayVPCPrivateNetworkExists(tt, "scaleway_vpc_private_network.private_network_2"), + testAccCheckScalewayK8sClusterPrivateNetworkID(tt, "scaleway_k8s_cluster.private_network", "scaleway_vpc_private_network.private_network_2"), + testAccCheckScalewayResourceIDChanged("scaleway_k8s_cluster.private_network", &clusterID), ), }, - { - Config: testAccCheckScalewayK8SClusterConfigPrivateNetworkChange(latestK8SVersion), - PlanOnly: true, - ExpectNonEmptyPlan: true, - }, - { - Config: testAccCheckScalewayK8SClusterConfigPrivateNetworkNotLinked(latestK8SVersion), - PlanOnly: true, - ExpectNonEmptyPlan: true, - }, }, }) } @@ -478,7 +473,7 @@ func TestAccScalewayK8SCluster_TypeChange(t *testing.T) { }, { // 2 : Upgrade to a dedicated Kapsule --> should migrate - Config: testAccCheckScalewayK8SClusterTypeChange("kapsule-dedicated-4", "cilium", latestK8SVersion), // + testAccCheckScalewayK8SClusterTypeChangeCopy(latestK8SVersion), + Config: testAccCheckScalewayK8SClusterTypeChange("kapsule-dedicated-4", "cilium", latestK8SVersion), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.type-change"), resource.TestCheckResourceAttr("scaleway_k8s_cluster.type-change", "type", "kapsule-dedicated-4"), @@ -487,7 +482,7 @@ func TestAccScalewayK8SCluster_TypeChange(t *testing.T) { }, { // 3 : Upgrade to an even bigger dedicated Kapsule --> should migrate - Config: testAccCheckScalewayK8SClusterTypeChange("kapsule-dedicated-16", "cilium", latestK8SVersion), // + testAccCheckScalewayK8SClusterTypeChangeCopy(latestK8SVersion), + Config: testAccCheckScalewayK8SClusterTypeChange("kapsule-dedicated-16", "cilium", latestK8SVersion), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.type-change"), resource.TestCheckResourceAttr("scaleway_k8s_cluster.type-change", "type", "kapsule-dedicated-16"), @@ -496,7 +491,7 @@ func TestAccScalewayK8SCluster_TypeChange(t *testing.T) { }, { // 4 : Downgrade to a smaller dedicated Kapsule --> should recreate - Config: testAccCheckScalewayK8SClusterTypeChange("kapsule-dedicated-8", "cilium", latestK8SVersion), // + testAccCheckScalewayK8SClusterTypeChangeCopy(latestK8SVersion), + Config: testAccCheckScalewayK8SClusterTypeChange("kapsule-dedicated-8", "cilium", latestK8SVersion), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.type-change"), resource.TestCheckResourceAttr("scaleway_k8s_cluster.type-change", "type", "kapsule-dedicated-8"), @@ -505,7 +500,7 @@ func TestAccScalewayK8SCluster_TypeChange(t *testing.T) { }, { // 5 : Change to a dedicated Kosmos --> should recreate - Config: testAccCheckScalewayK8SClusterTypeChange("multicloud-dedicated-4", "kilo", latestK8SVersion), // + testAccCheckScalewayK8SClusterTypeChangeCopy(latestK8SVersion), + Config: testAccCheckScalewayK8SClusterTypeChange("multicloud-dedicated-4", "kilo", latestK8SVersion), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.type-change"), resource.TestCheckResourceAttr("scaleway_k8s_cluster.type-change", "type", "multicloud-dedicated-4"), @@ -514,7 +509,7 @@ func TestAccScalewayK8SCluster_TypeChange(t *testing.T) { }, { // 6 : Upgrade to a bigger dedicated Kosmos --> should migrate - Config: testAccCheckScalewayK8SClusterTypeChange("multicloud-dedicated-8", "kilo", latestK8SVersion), // + testAccCheckScalewayK8SClusterTypeChangeCopy(latestK8SVersion), + Config: testAccCheckScalewayK8SClusterTypeChange("multicloud-dedicated-8", "kilo", latestK8SVersion), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.type-change"), resource.TestCheckResourceAttr("scaleway_k8s_cluster.type-change", "type", "multicloud-dedicated-8"), @@ -523,7 +518,7 @@ func TestAccScalewayK8SCluster_TypeChange(t *testing.T) { }, { // 7 : Downgrade to a mutualized Kosmos --> should recreate - Config: testAccCheckScalewayK8SClusterTypeChange("multicloud", "kilo", latestK8SVersion), // + testAccCheckScalewayK8SClusterTypeChangeCopy(latestK8SVersion), + Config: testAccCheckScalewayK8SClusterTypeChange("multicloud", "kilo", latestK8SVersion), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.type-change"), resource.TestCheckResourceAttr("scaleway_k8s_cluster.type-change", "type", "multicloud"), @@ -639,21 +634,29 @@ func testAccCheckScalewayK8sClusterPrivateNetworkID(tt *TestTools, clusterName, func testAccCheckScalewayK8SClusterConfigMinimal(version string) string { return fmt.Sprintf(` +resource "scaleway_vpc_private_network" "minimal" { + name = "test-minimal" +} resource "scaleway_k8s_cluster" "minimal" { cni = "calico" version = "%s" - name = "ClusterConfigMinimal" + name = "test-minimal" tags = [ "terraform-test", "scaleway_k8s_cluster", "minimal" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.minimal.id }`, version) } func testAccCheckScalewayK8SClusterConfigAutoscaler(version string) string { return fmt.Sprintf(` +resource "scaleway_vpc_private_network" "autoscaler" { + name = "test-autoscaler" + region = "nl-ams" +} resource "scaleway_k8s_cluster" "autoscaler" { cni = "calico" version = "%s" - name = "autoscaler-01" + name = "test-autoscaler-01" region = "nl-ams" autoscaler_config { disable_scale_down = true @@ -669,15 +672,20 @@ resource "scaleway_k8s_cluster" "autoscaler" { } tags = [ "terraform-test", "scaleway_k8s_cluster", "autoscaler-config" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.autoscaler.id }`, version) } func testAccCheckScalewayK8SClusterConfigAutoscalerChange(version string) string { return fmt.Sprintf(` +resource "scaleway_vpc_private_network" "autoscaler" { + name = "test-autoscaler" + region = "nl-ams" +} resource "scaleway_k8s_cluster" "autoscaler" { cni = "calico" version = "%s" - name = "autoscaler-02" + name = "test-autoscaler-02" region = "nl-ams" autoscaler_config { disable_scale_down = false @@ -691,15 +699,19 @@ resource "scaleway_k8s_cluster" "autoscaler" { } tags = [ "terraform-test", "scaleway_k8s_cluster", "autoscaler-config" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.autoscaler.id }`, version) } func testAccCheckScalewayK8SClusterConfigOIDC(version string) string { return fmt.Sprintf(` +resource "scaleway_vpc_private_network" "oidc" { + name = "test-oidc" +} resource "scaleway_k8s_cluster" "oidc" { cni = "cilium" version = "%s" - name = "oidc" + name = "test-oidc" open_id_connect_config { issuer_url = "https://accounts.google.com" client_id = "my-super-id" @@ -709,16 +721,20 @@ resource "scaleway_k8s_cluster" "oidc" { } tags = [ "terraform-test", "scaleway_k8s_cluster", "oidc-config" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.oidc.id } `, version) } func testAccCheckScalewayK8SClusterConfigOIDCChange(version string) string { return fmt.Sprintf(` +resource "scaleway_vpc_private_network" "oidc" { + name = "test-oidc" +} resource "scaleway_k8s_cluster" "oidc" { cni = "cilium" version = "%s" - name = "oidc" + name = "test-oidc" open_id_connect_config { issuer_url = "https://gitlab.com" client_id = "my-even-more-awesome-id" @@ -728,16 +744,20 @@ resource "scaleway_k8s_cluster" "oidc" { } tags = [ "terraform-test", "scaleway_k8s_cluster", "oidc-config" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.oidc.id } `, version) } func testAccCheckScalewayK8SClusterAutoUpgrade(enable bool, day string, hour uint64, version string) string { return fmt.Sprintf(` +resource "scaleway_vpc_private_network" "auto_upgrade" { + name = "test-auto-upgrade" +} resource "scaleway_k8s_cluster" "auto_upgrade" { cni = "calico" version = "%s" - name = "default-pool" + name = "test-auto-upgrade" auto_upgrade { enable = %t maintenance_window_start_hour = %d @@ -745,24 +765,10 @@ resource "scaleway_k8s_cluster" "auto_upgrade" { } tags = [ "terraform-test", "scaleway_k8s_cluster", "auto_upgrade" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.auto_upgrade.id }`, version, enable, hour, day) } -func testAccCheckScalewayK8SClusterConfigPrivateNetworkNotLinked(version string) string { - return fmt.Sprintf(` -resource "scaleway_vpc_private_network" "private_network" { - name = "k8s-private-network" -} -resource "scaleway_k8s_cluster" "private_network" { - cni = "calico" - version = "%s" - name = "k8s-private-network-cluster" - tags = [ "terraform-test", "scaleway_k8s_cluster", "private_network" ] - delete_additional_resources = true - depends_on = [scaleway_vpc_private_network.private_network] -}`, version) -} - func testAccCheckScalewayK8SClusterConfigPrivateNetworkLinked(version string) string { return fmt.Sprintf(` resource "scaleway_vpc_private_network" "private_network" { @@ -772,10 +778,10 @@ resource "scaleway_k8s_cluster" "private_network" { cni = "calico" version = "%s" name = "k8s-private-network-cluster" - private_network_id = scaleway_vpc_private_network.private_network.id tags = [ "terraform-test", "scaleway_k8s_cluster", "private_network" ] - delete_additional_resources = true + delete_additional_resources = false depends_on = [scaleway_vpc_private_network.private_network] + private_network_id = scaleway_vpc_private_network.private_network.id }`, version) } @@ -791,10 +797,10 @@ resource "scaleway_k8s_cluster" "private_network" { cni = "calico" version = "%s" name = "k8s-private-network-cluster" - private_network_id = scaleway_vpc_private_network.private_network_2.id tags = [ "terraform-test", "scaleway_k8s_cluster", "private_network" ] - delete_additional_resources = true + delete_additional_resources = false depends_on = [scaleway_vpc_private_network.private_network_2] + private_network_id = scaleway_vpc_private_network.private_network_2.id }`, version) } @@ -818,13 +824,29 @@ resource "scaleway_k8s_pool" "multicloud" { } func testAccCheckScalewayK8SClusterTypeChange(clusterType, cni, version string) string { - return fmt.Sprintf(` + config := "" + isKapsule := strings.HasPrefix(clusterType, "kapsule") + if isKapsule { + config = ` +resource "scaleway_vpc_private_network" "type-change" { + name = "test-type-change" +}` + } + + config += fmt.Sprintf(` resource "scaleway_k8s_cluster" "type-change" { type = "%s" cni = "%s" version = "%s" name = "test-type-change" tags = [ "terraform-test", "scaleway_k8s_cluster", "type-change" ] - delete_additional_resources = true -}`, clusterType, cni, version) + delete_additional_resources = false`, clusterType, cni, version) + + if isKapsule { + config += "\nprivate_network_id = scaleway_vpc_private_network.type-change.id\n}" + } else { + config += "\n}" + } + + return config } diff --git a/scaleway/resource_k8s_pool_test.go b/scaleway/resource_k8s_pool_test.go index 6a6abab061..8c8d10d9da 100644 --- a/scaleway/resource_k8s_pool_test.go +++ b/scaleway/resource_k8s_pool_test.go @@ -163,27 +163,27 @@ func TestAccScalewayK8SCluster_PoolPlacementGroup(t *testing.T) { { Config: testAccCheckScalewayK8SPoolConfigPlacementGroupWithCustomZone(latestK8SVersion), Check: resource.ComposeTestCheckFunc( - testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.cluster"), - testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.pool"), - resource.TestCheckResourceAttrPair("scaleway_k8s_pool.pool", "placement_group_id", "scaleway_instance_placement_group.placement_group", "id"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.pool", "zone", "nl-ams-2"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.pool", "node_type", "gp1_xs"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.pool", "size", "1"), - resource.TestCheckResourceAttrSet("scaleway_k8s_pool.pool", "id"), - resource.TestCheckResourceAttrSet("scaleway_k8s_pool.pool", "placement_group_id"), + testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.placement_group_2"), + testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.placement_group_2"), + resource.TestCheckResourceAttrPair("scaleway_k8s_pool.placement_group_2", "placement_group_id", "scaleway_instance_placement_group.placement_group", "id"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.placement_group_2", "zone", "nl-ams-2"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.placement_group_2", "node_type", "gp1_xs"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.placement_group_2", "size", "1"), + resource.TestCheckResourceAttrSet("scaleway_k8s_pool.placement_group_2", "id"), + resource.TestCheckResourceAttrSet("scaleway_k8s_pool.placement_group_2", "placement_group_id"), ), }, { Config: testAccCheckScalewayK8SPoolConfigPlacementGroupWithMultiZone(latestK8SVersion), Check: resource.ComposeTestCheckFunc( - testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.cluster"), - testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.pool"), - resource.TestCheckResourceAttrPair("scaleway_k8s_pool.pool", "placement_group_id", "scaleway_instance_placement_group.placement_group", "id"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.pool", "zone", "nl-ams-1"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.pool", "node_type", "gp1_xs"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.pool", "size", "1"), - resource.TestCheckResourceAttrSet("scaleway_k8s_pool.pool", "id"), - resource.TestCheckResourceAttrSet("scaleway_k8s_pool.pool", "placement_group_id"), + testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.placement_group_2"), + testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.placement_group_2"), + resource.TestCheckResourceAttrPair("scaleway_k8s_pool.placement_group_2", "placement_group_id", "scaleway_instance_placement_group.placement_group", "id"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.placement_group_2", "zone", "nl-ams-1"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.placement_group_2", "node_type", "gp1_xs"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.placement_group_2", "size", "1"), + resource.TestCheckResourceAttrSet("scaleway_k8s_pool.placement_group_2", "id"), + resource.TestCheckResourceAttrSet("scaleway_k8s_pool.placement_group_2", "placement_group_id"), ), }, }, @@ -205,36 +205,36 @@ func TestAccScalewayK8SCluster_PoolUpgradePolicy(t *testing.T) { Config: testAccCheckScalewayK8SPoolConfigUpgradePolicy(latestK8SVersion, 2, 3), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.upgrade_policy"), - testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.default"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "node_type", "gp1_xs"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "size", "1"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "autohealing", "true"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "autoscaling", "true"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "version", latestK8SVersion), - resource.TestCheckResourceAttrSet("scaleway_k8s_pool.default", "id"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "tags.0", "terraform-test"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "tags.1", "scaleway_k8s_cluster"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "tags.2", "upgrade_policy"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "upgrade_policy.0.max_surge", "2"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "upgrade_policy.0.max_unavailable", "3"), + testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.upgrade_policy"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "node_type", "gp1_xs"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "size", "1"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "autohealing", "true"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "autoscaling", "true"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "version", latestK8SVersion), + resource.TestCheckResourceAttrSet("scaleway_k8s_pool.upgrade_policy", "id"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "tags.0", "terraform-test"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "tags.1", "scaleway_k8s_cluster"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "tags.2", "upgrade_policy"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "upgrade_policy.0.max_surge", "2"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "upgrade_policy.0.max_unavailable", "3"), ), }, { Config: testAccCheckScalewayK8SPoolConfigUpgradePolicy(latestK8SVersion, 0, 1), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.upgrade_policy"), - testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.default"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "node_type", "gp1_xs"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "size", "1"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "autohealing", "true"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "autoscaling", "true"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "version", latestK8SVersion), - resource.TestCheckResourceAttrSet("scaleway_k8s_pool.default", "id"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "tags.0", "terraform-test"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "tags.1", "scaleway_k8s_cluster"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "tags.2", "upgrade_policy"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "upgrade_policy.0.max_surge", "0"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "upgrade_policy.0.max_unavailable", "1"), + testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.upgrade_policy"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "node_type", "gp1_xs"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "size", "1"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "autohealing", "true"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "autoscaling", "true"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "version", latestK8SVersion), + resource.TestCheckResourceAttrSet("scaleway_k8s_pool.upgrade_policy", "id"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "tags.0", "terraform-test"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "tags.1", "scaleway_k8s_cluster"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "tags.2", "upgrade_policy"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "upgrade_policy.0.max_surge", "0"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.upgrade_policy", "upgrade_policy.0.max_unavailable", "1"), ), }, }, @@ -256,20 +256,20 @@ func TestAccScalewayK8SCluster_PoolKubeletArgs(t *testing.T) { Config: testAccCheckScalewayK8SPoolConfigKubeletArgs(latestK8SVersion, 1337), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.kubelet_args"), - testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.default"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "version", latestK8SVersion), - resource.TestCheckResourceAttrSet("scaleway_k8s_pool.default", "id"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "kubelet_args.maxPods", "1337"), + testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.kubelet_args"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.kubelet_args", "version", latestK8SVersion), + resource.TestCheckResourceAttrSet("scaleway_k8s_pool.kubelet_args", "id"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.kubelet_args", "kubelet_args.maxPods", "1337"), ), }, { Config: testAccCheckScalewayK8SPoolConfigKubeletArgs(latestK8SVersion, 50), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.kubelet_args"), - testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.default"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "version", latestK8SVersion), - resource.TestCheckResourceAttrSet("scaleway_k8s_pool.default", "id"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "kubelet_args.maxPods", "50"), + testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.kubelet_args"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.kubelet_args", "version", latestK8SVersion), + resource.TestCheckResourceAttrSet("scaleway_k8s_pool.kubelet_args", "id"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.kubelet_args", "kubelet_args.maxPods", "50"), ), }, }, @@ -291,10 +291,10 @@ func TestAccScalewayK8SCluster_PoolZone(t *testing.T) { Config: testAccCheckScalewayK8SPoolConfigZone(latestK8SVersion, "fr-par-2"), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayK8SClusterExists(tt, "scaleway_k8s_cluster.zone"), - testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.default"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "version", latestK8SVersion), - resource.TestCheckResourceAttrSet("scaleway_k8s_pool.default", "id"), - resource.TestCheckResourceAttr("scaleway_k8s_pool.default", "zone", "fr-par-2"), + testAccCheckScalewayK8SPoolExists(tt, "scaleway_k8s_pool.zone"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.zone", "version", latestK8SVersion), + resource.TestCheckResourceAttrSet("scaleway_k8s_pool.zone", "id"), + resource.TestCheckResourceAttr("scaleway_k8s_pool.zone", "zone", "fr-par-2"), ), }, }, @@ -314,11 +314,15 @@ func TestAccScalewayK8SCluster_PoolSize(t *testing.T) { Steps: []resource.TestStep{ { Config: fmt.Sprintf(` - resource "scaleway_k8s_cluster" "cluster" { - name = "cluster" + resource "scaleway_vpc_private_network" "test-pool-size" { + name = "test-pool-size" + } + resource "scaleway_k8s_cluster" "test-pool-size" { + name = "test-pool-size" version = "%s" cni = "cilium" delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.test-pool-size.id auto_upgrade { enable = true maintenance_window_start_hour = 12 @@ -327,7 +331,7 @@ func TestAccScalewayK8SCluster_PoolSize(t *testing.T) { } resource "scaleway_k8s_pool" "pool" { - cluster_id = scaleway_k8s_cluster.cluster.id + cluster_id = scaleway_k8s_cluster.test-pool-size.id name = "pool" node_type = "gp1_xs" size = 1 @@ -338,20 +342,24 @@ func TestAccScalewayK8SCluster_PoolSize(t *testing.T) { }, { Config: fmt.Sprintf(` - resource "scaleway_k8s_cluster" "cluster" { - name = "cluster" + resource "scaleway_vpc_private_network" "test-pool-size" { + name = "test-pool-size" + } + resource "scaleway_k8s_cluster" "test-pool-size" { + name = "test-pool-size" version = "%s" cni = "cilium" + delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.test-pool-size.id auto_upgrade { - enable = true - maintenance_window_start_hour = 12 - maintenance_window_day = "monday" + enable = true + maintenance_window_start_hour = 12 + maintenance_window_day = "monday" } - delete_additional_resources = true } resource "scaleway_k8s_pool" "pool" { - cluster_id = scaleway_k8s_cluster.cluster.id + cluster_id = scaleway_k8s_cluster.test-pool-size.id name = "pool" node_type = "gp1_xs" size = 2 @@ -708,7 +716,7 @@ func testAccCheckScalewayK8SPoolConfigMinimal(version string, otherPool bool) st if otherPool { pool += ` resource "scaleway_k8s_pool" "minimal" { - name = "minimal" + name = "test-pool-minimal-2" cluster_id = "${scaleway_k8s_cluster.minimal.id}" node_type = "gp1_xs" autohealing = true @@ -720,7 +728,7 @@ resource "scaleway_k8s_pool" "minimal" { return fmt.Sprintf(` resource "scaleway_k8s_pool" "default" { - name = "default" + name = "test-pool-minimal" cluster_id = "${scaleway_k8s_cluster.minimal.id}" node_type = "gp1_xs" autohealing = true @@ -728,12 +736,18 @@ resource "scaleway_k8s_pool" "default" { size = 1 tags = [ "terraform-test", "scaleway_k8s_cluster", "default" ] } + +resource "scaleway_vpc_private_network" "minimal" { + name = "test-pool-minimal" +} + resource "scaleway_k8s_cluster" "minimal" { - name = "K8SPoolConfigMinimal" + name = "test-pool-minimal" cni = "calico" version = "%s" tags = [ "terraform-test", "scaleway_k8s_cluster", "minimal" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.minimal.id } %s`, version, pool) } @@ -743,7 +757,7 @@ func testAccCheckScalewayK8SPoolConfigWait(version string, otherPool bool, other if otherPool { pool += fmt.Sprintf(` resource "scaleway_k8s_pool" "minimal" { - name = "minimal" + name = "test-pool-wait-2" cluster_id = scaleway_k8s_cluster.minimal.id node_type = "gp1_xs" size = %d @@ -756,7 +770,7 @@ resource "scaleway_k8s_pool" "minimal" { return fmt.Sprintf(` resource "scaleway_k8s_pool" "default" { - name = "default" + name = "test-pool-wait" cluster_id = scaleway_k8s_cluster.minimal.id node_type = "gp1_xs" size = 1 @@ -765,12 +779,17 @@ resource "scaleway_k8s_pool" "default" { wait_for_pool_ready = true } +resource "scaleway_vpc_private_network" "minimal" { + name = "test-pool-wait" +} + resource "scaleway_k8s_cluster" "minimal" { - name = "PoolConfigWait" + name = "test-pool-wait" cni = "calico" version = "%s" tags = [ "terraform-test", "scaleway_k8s_cluster", "minimal" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.minimal.id } %s`, version, pool) } @@ -778,78 +797,89 @@ resource "scaleway_k8s_cluster" "minimal" { func testAccCheckScalewayK8SPoolConfigPlacementGroup(version string) string { return fmt.Sprintf(` resource "scaleway_instance_placement_group" "placement_group" { - name = "pool-placement-group" + name = "test-pool-placement-group" policy_type = "max_availability" policy_mode = "optional" } resource "scaleway_k8s_pool" "placement_group" { - name = "placement_group" + name = "test-pool-placement-group" cluster_id = scaleway_k8s_cluster.placement_group.id node_type = "gp1_xs" placement_group_id = scaleway_instance_placement_group.placement_group.id size = 1 } +resource "scaleway_vpc_private_network" "placement_group" { + name = "test-pool-placement-group" +} + resource "scaleway_k8s_cluster" "placement_group" { - name = "placement_group" + name = "test-pool-placement-group" cni = "calico" version = "%s" tags = [ "terraform-test", "scaleway_k8s_cluster", "placement_group" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.placement_group.id }`, version) } func testAccCheckScalewayK8SPoolConfigPlacementGroupWithCustomZone(version string) string { return fmt.Sprintf(` resource "scaleway_instance_placement_group" "placement_group" { - name = "pool-placement-group" + name = "test-pool-placement-group" policy_type = "max_availability" policy_mode = "optional" zone = "nl-ams-2" } -resource "scaleway_k8s_pool" "pool" { - name = "placement_group" - cluster_id = scaleway_k8s_cluster.cluster.id +resource "scaleway_k8s_pool" "placement_group_2" { + name = "test-pool-placement-group-2" + cluster_id = scaleway_k8s_cluster.placement_group_2.id node_type = "gp1_xs" placement_group_id = scaleway_instance_placement_group.placement_group.id size = 1 - region = scaleway_k8s_cluster.cluster.region + region = scaleway_k8s_cluster.placement_group_2.region zone = scaleway_instance_placement_group.placement_group.zone } -resource "scaleway_k8s_cluster" "cluster" { - name = "placement_group" +resource "scaleway_vpc_private_network" "placement_group" { + name = "test-pool-placement-group" + region = "nl-ams" +} + +resource "scaleway_k8s_cluster" "placement_group_2" { + name = "test-pool-placement-group-2" cni = "calico" version = "%s" tags = [ "terraform-test", "scaleway_k8s_cluster", "placement_group" ] region = "nl-ams" delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.placement_group.id }`, version) } func testAccCheckScalewayK8SPoolConfigPlacementGroupWithMultiZone(version string) string { return fmt.Sprintf(` resource "scaleway_instance_placement_group" "placement_group" { - name = "pool-placement-group" + name = "test-pool-placement-group" policy_type = "max_availability" policy_mode = "optional" zone = "nl-ams-1" } -resource "scaleway_k8s_pool" "pool" { - name = "placement_group" - cluster_id = scaleway_k8s_cluster.cluster.id +resource "scaleway_k8s_pool" "placement_group_2" { + name = "test-pool-placement-group-2" + cluster_id = scaleway_k8s_cluster.placement_group_2.id node_type = "gp1_xs" placement_group_id = scaleway_instance_placement_group.placement_group.id size = 1 - region = scaleway_k8s_cluster.cluster.region + region = scaleway_k8s_cluster.placement_group_2.region zone = scaleway_instance_placement_group.placement_group.zone } -resource "scaleway_k8s_cluster" "cluster" { - name = "placement_group" +resource "scaleway_k8s_cluster" "placement_group_2" { + name = "test-pool-placement-group-2" cni = "kilo" version = "%s" tags = [ "terraform-test", "scaleway_k8s_cluster", "placement_group" ] @@ -861,8 +891,8 @@ resource "scaleway_k8s_cluster" "cluster" { func testAccCheckScalewayK8SPoolConfigUpgradePolicy(version string, maxSurge, maxUnavailable int) string { return fmt.Sprintf(` -resource "scaleway_k8s_pool" "default" { - name = "default" +resource "scaleway_k8s_pool" "upgrade_policy" { + name = "test-pool-upgrade-policy" cluster_id = "${scaleway_k8s_cluster.upgrade_policy.id}" node_type = "gp1_xs" autohealing = true @@ -874,19 +904,25 @@ resource "scaleway_k8s_pool" "default" { max_unavailable = %d } } + +resource "scaleway_vpc_private_network" "upgrade_policy" { + name = "test-pool-upgrade-policy" +} + resource "scaleway_k8s_cluster" "upgrade_policy" { - name = "K8SPoolConfigUpgradePolicy" + name = "test-pool-upgrade-policy" cni = "cilium" version = "%s" tags = [ "terraform-test", "scaleway_k8s_cluster", "upgrade_policy" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.upgrade_policy.id }`, maxSurge, maxUnavailable, version) } func testAccCheckScalewayK8SPoolConfigKubeletArgs(version string, maxPods int) string { return fmt.Sprintf(` -resource "scaleway_k8s_pool" "default" { - name = "default" +resource "scaleway_k8s_pool" "kubelet_args" { + name = "test-pool-kubelet-args" cluster_id = "${scaleway_k8s_cluster.kubelet_args.id}" node_type = "gp1_xs" autohealing = true @@ -897,19 +933,25 @@ resource "scaleway_k8s_pool" "default" { maxPods = %d } } + +resource "scaleway_vpc_private_network" "kubelet_args" { + name = "test-pool-kubelet-args" +} + resource "scaleway_k8s_cluster" "kubelet_args" { - name = "K8SPoolConfigKubeletArgs" + name = "test-pool-kubelet-args" cni = "cilium" version = "%s" tags = [ "terraform-test", "scaleway_k8s_cluster", "kubelet_args" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.kubelet_args.id }`, maxPods, version) } func testAccCheckScalewayK8SPoolConfigZone(version string, zone string) string { return fmt.Sprintf(` -resource "scaleway_k8s_pool" "default" { - name = "default" +resource "scaleway_k8s_pool" "zone" { + name = "test-pool-zone" cluster_id = "${scaleway_k8s_cluster.zone.id}" node_type = "gp1_xs" autohealing = true @@ -918,12 +960,18 @@ resource "scaleway_k8s_pool" "default" { tags = [ "terraform-test", "scaleway_k8s_cluster", "zone" ] zone = "%s" } + +resource "scaleway_vpc_private_network" "zone" { + name = "test-pool-zone" +} + resource "scaleway_k8s_cluster" "zone" { - name = "K8SPoolConfigZone" + name = "test-pool-zone" cni = "cilium" version = "%s" tags = [ "terraform-test", "scaleway_k8s_cluster", "zone" ] delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.zone.id }`, zone, version) } diff --git a/scaleway/testdata/data-source-k8s-cluster-basic.cassette.yaml b/scaleway/testdata/data-source-k8s-cluster-basic.cassette.yaml index 5eec8220ca..188720cba8 100644 --- a/scaleway/testdata/data-source-k8s-cluster-basic.cassette.yaml +++ b/scaleway/testdata/data-source-k8s-cluster-basic.cassette.yaml @@ -12,11 +12,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,80 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6359c908-698c-482d-9011-d46206c4bbd5 + - 97c8ec8b-cf07-48c1-8b9b-6164b0bcb5d2 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"tf-cluster","description":"","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"version":"1.28.0","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-data-source-cluster","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-18T16:35:44.914318Z","dhcp_enabled":true,"id":"b8465b8c-e70b-481d-ac66-e37207423524","name":"test-data-source-cluster","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.914318Z","id":"aae07c51-5ed7-455e-aa00-aa194556cf64","subnet":"172.16.36.0/22","updated_at":"2023-10-18T16:35:44.914318Z"},{"created_at":"2023-10-18T16:35:44.914318Z","id":"769313be-1e2f-4a8e-9769-9a14e634d57a","subnet":"fd63:256c:45f7:d638::/64","updated_at":"2023-10-18T16:35:44.914318Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.914318Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "725" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19a28c18-d7f9-4c91-91e3-82ad3e8594b3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b8465b8c-e70b-481d-ac66-e37207423524 + method: GET + response: + body: '{"created_at":"2023-10-18T16:35:44.914318Z","dhcp_enabled":true,"id":"b8465b8c-e70b-481d-ac66-e37207423524","name":"test-data-source-cluster","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.914318Z","id":"aae07c51-5ed7-455e-aa00-aa194556cf64","subnet":"172.16.36.0/22","updated_at":"2023-10-18T16:35:44.914318Z"},{"created_at":"2023-10-18T16:35:44.914318Z","id":"769313be-1e2f-4a8e-9769-9a14e634d57a","subnet":"fd63:256c:45f7:d638::/64","updated_at":"2023-10-18T16:35:44.914318Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.914318Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "725" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e568650c-7715-422e-9a3b-59e3910882f8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"tf-cluster","description":"","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524"}' form: {} headers: Content-Type: @@ -50,16 +118,744 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727098Z","created_at":"2023-09-01T16:15:56.809727098Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:15:56.817572349Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992604626Z","created_at":"2023-10-18T16:35:45.992604626Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:35:46.005426784Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1505" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01b1eacc-ec5d-4816-80f4-2153f1177168 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:35:46.005427Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1496" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d41d2bd-e73a-4fe4-822f-07a57a1a7132 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.815909Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1501" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2977f0b-0b54-4197-9c2b-87790a3d32df + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.815909Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1501" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 07f206e5-e709-4ae9-bd2b-0ee847dd9332 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU0eGIxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRodENuaG9OV2RxTldWb1JVUTNMek53VEVKTVFrdFpZamgwT0hwU2RtbHZPSFJHUkdsRlIxTktOMHQzY0RsM1JHZHlSMDh3ZW5BM1lsQmtabTlhTnpNNFRHUUtjbmRuTmtFM1preExkV2hrY0d0aVZFeHpOSHBIT1RkWVdVOUhZMjF6ZEhaeWVVOXFSa2RNVTBSSFNtMVJlR2RMSzBRNU15OUtPVkpSVmtoNmFVVnNkd3AxVVZKQlRsWlRiRUpJVDJGV1VWQlpWWGR1TVVGcFRuVnpVR05vZUZaUFJIRkhiRzloWWpCc01VbEVZMDFXTTFKMldXVTRlbGh2UmtOTVVqRkdkVTh5Q25sR05VaDBaR3R2UTA5MU1saDFNQ3RuUkZkaFRqWTRTRU14VVU1b1dXVmpVVkZLWnpkMFExaE9TRzlpVkZFclFWb3lhelF6ZVdaU1RUVjNWamxVY1RBS1pteHZWRUV3WkhkSFVuRnFNbWR4UkU5MVRHcGxVbGRpU0VSTGJXRkdTekpVWWxKQ1dHRnZiRmRFVG5keVN5dG5Ua04zTDA5ME1WZzNjakpRYUdkRVpRbzBNWGNyUm5SWU1HcEZVMmhyTjBkaVJqQnpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktNMEpaZW1NdkwwRkhaak5pV1ZnMFRFbHVhak53V2tNeGVGUk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJWRmR6TkdOdlJIcFpkbGxUZEROTk1FSmtlVE5JUTJkMmVXdGxTMjlLYkhjMFIyc3ZWa0ZrVVVGRldXSkdPR2QzTVFvdlFuUTJRa3RxUjNGUksxRXJObEZoVGxSa2FWWk9UR054ZEZrek9VOTZXWGhpT0ZRMGQzbFlZMUJzVkZSUmQwTkRjRU5PYlZoMFRteHBRM2RhY1hGdUNqRmtjRUZTYW1SWk5sSlZaSFJ1TUV0TUx6aHBUV1pDVW1Sak5IQjNka0l3VG5weWNWQlJhSEpuTUhSb1NVa3ZSRkpDUVRaRk9VZGtlRWxHY3pRMFptd0tSMnRpYTI5bFZUVTVhR2xNTUZKQlQweENXVzE2TW14dFpVTkJiMnB5UVhKaVNHZFZSREZCTkZCd2NGQmpaWGh2YUdSMFRtRTBPREJwVmsxalJEaHFiUW95TlhNdlExcFhiVTlOYUZOWksxTlhVekZRVUhaeWJ6SkdjblZTTldSWFJFaFdiV3hQUW5GbVMyVnhURlJ5UlZOME1XNVdhVkUzVEVScE1rMVFSRWd3Q2sxdFl5dHFTREZ2ZFZremRpOUlaRW81UmtWMk5reERhQzloYkV3eE0yODNibWxzYmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzgwYWM4MDUxLWQ4YzgtNDRjYi04NzA3LTNlNzE1MGM3MmY1My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEVm12NzZJZVJRUVJJaFJqdG1LcnJrdjk2dWZLZ253RzE5M3VDRmpzQlJVMHp2aHg0V3NMVUpNQg==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2574" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ce707739-12c5-4e8b-bc0c-c4bc99db33d6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.815909Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1501" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7708d514-9ccd-4753-8e58-ad41b8a5ae7a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster&order_by=created_at_asc&status=unknown + method: GET + response: + body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.815909Z","upgrade_available":false,"version":"1.28.2"}],"total_count":1}' + headers: + Content-Length: + - "1533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 99d0eea7-f2bd-45f3-9fb3-d8292b3962de + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.815909Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1501" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34b82982-f72e-4d01-a271-65ad92674671 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.815909Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1501" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 73e3b644-5799-432d-a2ca-4377c5199c3c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU0eGIxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRodENuaG9OV2RxTldWb1JVUTNMek53VEVKTVFrdFpZamgwT0hwU2RtbHZPSFJHUkdsRlIxTktOMHQzY0RsM1JHZHlSMDh3ZW5BM1lsQmtabTlhTnpNNFRHUUtjbmRuTmtFM1preExkV2hrY0d0aVZFeHpOSHBIT1RkWVdVOUhZMjF6ZEhaeWVVOXFSa2RNVTBSSFNtMVJlR2RMSzBRNU15OUtPVkpSVmtoNmFVVnNkd3AxVVZKQlRsWlRiRUpJVDJGV1VWQlpWWGR1TVVGcFRuVnpVR05vZUZaUFJIRkhiRzloWWpCc01VbEVZMDFXTTFKMldXVTRlbGh2UmtOTVVqRkdkVTh5Q25sR05VaDBaR3R2UTA5MU1saDFNQ3RuUkZkaFRqWTRTRU14VVU1b1dXVmpVVkZLWnpkMFExaE9TRzlpVkZFclFWb3lhelF6ZVdaU1RUVjNWamxVY1RBS1pteHZWRUV3WkhkSFVuRnFNbWR4UkU5MVRHcGxVbGRpU0VSTGJXRkdTekpVWWxKQ1dHRnZiRmRFVG5keVN5dG5Ua04zTDA5ME1WZzNjakpRYUdkRVpRbzBNWGNyUm5SWU1HcEZVMmhyTjBkaVJqQnpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktNMEpaZW1NdkwwRkhaak5pV1ZnMFRFbHVhak53V2tNeGVGUk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJWRmR6TkdOdlJIcFpkbGxUZEROTk1FSmtlVE5JUTJkMmVXdGxTMjlLYkhjMFIyc3ZWa0ZrVVVGRldXSkdPR2QzTVFvdlFuUTJRa3RxUjNGUksxRXJObEZoVGxSa2FWWk9UR054ZEZrek9VOTZXWGhpT0ZRMGQzbFlZMUJzVkZSUmQwTkRjRU5PYlZoMFRteHBRM2RhY1hGdUNqRmtjRUZTYW1SWk5sSlZaSFJ1TUV0TUx6aHBUV1pDVW1Sak5IQjNka0l3VG5weWNWQlJhSEpuTUhSb1NVa3ZSRkpDUVRaRk9VZGtlRWxHY3pRMFptd0tSMnRpYTI5bFZUVTVhR2xNTUZKQlQweENXVzE2TW14dFpVTkJiMnB5UVhKaVNHZFZSREZCTkZCd2NGQmpaWGh2YUdSMFRtRTBPREJwVmsxalJEaHFiUW95TlhNdlExcFhiVTlOYUZOWksxTlhVekZRVUhaeWJ6SkdjblZTTldSWFJFaFdiV3hQUW5GbVMyVnhURlJ5UlZOME1XNVdhVkUzVEVScE1rMVFSRWd3Q2sxdFl5dHFTREZ2ZFZremRpOUlaRW81UmtWMk5reERhQzloYkV3eE0yODNibWxzYmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzgwYWM4MDUxLWQ4YzgtNDRjYi04NzA3LTNlNzE1MGM3MmY1My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEVm12NzZJZVJRUVJJaFJqdG1LcnJrdjk2dWZLZ253RzE5M3VDRmpzQlJVMHp2aHg0V3NMVUpNQg==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2574" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a0e6be3-0667-4406-b8d7-31380512e9bd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU0eGIxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRodENuaG9OV2RxTldWb1JVUTNMek53VEVKTVFrdFpZamgwT0hwU2RtbHZPSFJHUkdsRlIxTktOMHQzY0RsM1JHZHlSMDh3ZW5BM1lsQmtabTlhTnpNNFRHUUtjbmRuTmtFM1preExkV2hrY0d0aVZFeHpOSHBIT1RkWVdVOUhZMjF6ZEhaeWVVOXFSa2RNVTBSSFNtMVJlR2RMSzBRNU15OUtPVkpSVmtoNmFVVnNkd3AxVVZKQlRsWlRiRUpJVDJGV1VWQlpWWGR1TVVGcFRuVnpVR05vZUZaUFJIRkhiRzloWWpCc01VbEVZMDFXTTFKMldXVTRlbGh2UmtOTVVqRkdkVTh5Q25sR05VaDBaR3R2UTA5MU1saDFNQ3RuUkZkaFRqWTRTRU14VVU1b1dXVmpVVkZLWnpkMFExaE9TRzlpVkZFclFWb3lhelF6ZVdaU1RUVjNWamxVY1RBS1pteHZWRUV3WkhkSFVuRnFNbWR4UkU5MVRHcGxVbGRpU0VSTGJXRkdTekpVWWxKQ1dHRnZiRmRFVG5keVN5dG5Ua04zTDA5ME1WZzNjakpRYUdkRVpRbzBNWGNyUm5SWU1HcEZVMmhyTjBkaVJqQnpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktNMEpaZW1NdkwwRkhaak5pV1ZnMFRFbHVhak53V2tNeGVGUk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJWRmR6TkdOdlJIcFpkbGxUZEROTk1FSmtlVE5JUTJkMmVXdGxTMjlLYkhjMFIyc3ZWa0ZrVVVGRldXSkdPR2QzTVFvdlFuUTJRa3RxUjNGUksxRXJObEZoVGxSa2FWWk9UR054ZEZrek9VOTZXWGhpT0ZRMGQzbFlZMUJzVkZSUmQwTkRjRU5PYlZoMFRteHBRM2RhY1hGdUNqRmtjRUZTYW1SWk5sSlZaSFJ1TUV0TUx6aHBUV1pDVW1Sak5IQjNka0l3VG5weWNWQlJhSEpuTUhSb1NVa3ZSRkpDUVRaRk9VZGtlRWxHY3pRMFptd0tSMnRpYTI5bFZUVTVhR2xNTUZKQlQweENXVzE2TW14dFpVTkJiMnB5UVhKaVNHZFZSREZCTkZCd2NGQmpaWGh2YUdSMFRtRTBPREJwVmsxalJEaHFiUW95TlhNdlExcFhiVTlOYUZOWksxTlhVekZRVUhaeWJ6SkdjblZTTldSWFJFaFdiV3hQUW5GbVMyVnhURlJ5UlZOME1XNVdhVkUzVEVScE1rMVFSRWd3Q2sxdFl5dHFTREZ2ZFZremRpOUlaRW81UmtWMk5reERhQzloYkV3eE0yODNibWxzYmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzgwYWM4MDUxLWQ4YzgtNDRjYi04NzA3LTNlNzE1MGM3MmY1My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEVm12NzZJZVJRUVJJaFJqdG1LcnJrdjk2dWZLZ253RzE5M3VDRmpzQlJVMHp2aHg0V3NMVUpNQg==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2574" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c30ef29-4548-489b-bb4d-47766a845470 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"default","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/pools + method: POST + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429388Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "620" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41404d31-7528-4011-b38a-4c5aac399e5a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1b09a33c-80c6-470a-970b-4733910b585b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:56 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0731701-2520-4b38-a319-7db6a731e39d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 100b03ce-86b0-4b45-9e66-bfb9d3ea7953 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:07 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 506950f3-0754-498e-9777-e35a72802397 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 308b9739-1565-44a0-a710-a2df6129a1fa + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5756adb1-c2bf-495a-a5da-612ebfe5d72c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4e64205-c2f8-4160-89c7-1959a68c8cb0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0928ef53-77dc-4e28-9c22-f33e2075cbe6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8f1f3f0a-0fb0-4fec-ad3f-b253b90f2fae + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2909e82e-a93f-43c2-8b3c-e2fb5ae67746 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1426" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:56 GMT + - Wed, 18 Oct 2023 16:36:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb208335-e795-4160-85c3-1db75c975e4e + - 2f175b53-bf08-408b-b1b5-d386b6997c07 status: 200 OK code: 200 duration: "" @@ -80,19 +876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:15:56.817572Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1417" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:56 GMT + - Wed, 18 Oct 2023 16:36:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4211b9c7-01ae-4887-8dd8-f4049ce55b7a + - adee9dec-15c6-45c6-a646-48064d5e624d status: 200 OK code: 200 duration: "" @@ -113,19 +909,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.018948Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1422" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:01 GMT + - Wed, 18 Oct 2023 16:36:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -135,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5840931f-356a-48cd-9ccf-2dbbb897ad92 + - 2e9cfce5-b3a5-4b3a-a577-c54c6aaa0e0c status: 200 OK code: 200 duration: "" @@ -146,19 +942,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.018948Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1422" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:01 GMT + - Wed, 18 Oct 2023 16:36:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0730dde-8051-4db0-b0ad-03ff033b17f2 + - 4f3063af-38f8-4c52-b786-b1b66191654c status: 200 OK code: 200 duration: "" @@ -179,19 +975,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzFWQ0NteDJSSE13T0RGS1NIVmlTMVZrYUhwWWEwUlBiSEExTDJnM2JsTlFVMkp1TkVGUkx6QlFjM0ZhVm5Kc09FOVdWM0ZwU2xseVQyY3pWV1JEVG1aUVdHRUthMDh3ZG5KSVRITjZSVUp5UjNkdWRXNDJWMHByWWxKNVowRTBiVlI2Y1VnMU9HNUZWekJRT0dabmVERXZOVk5RWVZsbWNqWjFkSHBNVEZKblFraEJRZ3BYTUVaRmEyMUNSV2hoUzJkQlNDdHhaVVpUTVZKdGNXNXZhall6VjBWcFJ6bG1WMGs0WjBwbFFtNTJPV1JQT0ZWNVpVZEpVbGxCZVU5cmNVOHpiblJRQ2k5cU5tdDBVbXRvTUZKU2VXTmhkbEJIYjBsV1NsSnphRlFyVjI5MU1saFFka2wxWld4R1FrbERWVlZoTW5OU09FcFlVM2QwY3pka05GRk1Na3BuUTFFS01tWjJUSGhMVnpKcVpubFliQzkwTVhCemNIbDNaRVI1V0M4dlZuZDFiRGt3TVdwUmJUVndUR2hSVlZCcE1rUTRiRFZ0VXpZNGIxQkZSVlJPVmt4WU5BcHhWWGRXT1dkNU1WRXdOMGRZYzI1SVNqWTRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk1SVzFVWWxWTVYyRm1SVGxFWm1aeWNYUnFSR2gzUm5GSVZDdE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRSbGhGUmtkVmRtNU9aRzEzVWpVeVFuUldkMUEwVFRsUVJFWnFTRlYwVkhFMk16UktjVVZrVWxoR2VYbERaRms1VlFvcllrcHNielpaWTNaVWNFVmtSVXRNTUhGWk9HVlNWR1l6TlZseFR6QTVUMU41ZEdWSVNXRjZSMk50TkhWRVkycElTR2t3Y1RBNEwxRlJkbHBZWVRadENpOWtZMjFSTDJGVVlVRndOa1ozVUVzMk5XdExVRTFTYVdaVmNGSkRjUzlsUVV0eE1DOXplR1ZoTHpCemFuRkpTbWxETmtsRGRXSkxUR1E0TUdoc09YZ0tZa2RhUldoQ1FTOXNkMlIyVFhkaVlYVXZPR0p4V0Uxa1VHeHBTbmM1Ulc0MmRDOXZkQ3RLWW1SUUsyUlNVMnh6Y3pJeVVFdHNXVzQ0TTJWTVVWZDZjUW92VVVWb2J6ZGxVSE5xVFdwV1ZGcERUa0l5ZG1sSmFWbzJWbFJqV0UxWWNsQjBURUZGT1hSbUszaHFaa3hqVlROUFdFeEVSVlpRTVdrcmNtWXlSVTFHQ2pGSUwySTNaeXR5Tmt3NGVsWkxlRzR3Uld4eEwwRTNZMVZsU2s1VGVIRkpTemhzU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E2MDA3YjgxLWY3MGYtNDkyYS1hYzYzLWNjMGU5NWMyNGRlMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGRjJYZGpFcmlFRlJYRGF3Rk54QWpPUHltUWQ1UVU3R3FlUVlaWTVBSjFmVTRueGFHbWNmaWJsTw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2572" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:37:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e33794ab-9b93-4224-9900-8cae4f9912b2 + - c8a78e8d-53f8-403b-b021-7e743cce306a status: 200 OK code: 200 duration: "" @@ -212,19 +1008,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.018948Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1422" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:37:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 600dceb0-1862-427b-beba-cebb5a66fd31 + - e9cd0dd8-b81a-4328-8cbb-65c4895f9fed status: 200 OK code: 200 duration: "" @@ -245,19 +1041,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.018948Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1422" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:37:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -267,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cc4f89e-b6b0-4822-87fe-e40a598118a7 + - 046d29fb-85b0-4624-99fc-5e3702ccc77d status: 200 OK code: 200 duration: "" @@ -278,19 +1074,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster&order_by=created_at_asc&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.018948Z","upgrade_available":false,"version":"1.28.0"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1453" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:37:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +1096,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d99e7b03-e162-41f1-94dd-f57950beffb1 + - 47d1ad0c-4cb1-4b26-88ad-a610ab900363 status: 200 OK code: 200 duration: "" @@ -311,19 +1107,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzFWQ0NteDJSSE13T0RGS1NIVmlTMVZrYUhwWWEwUlBiSEExTDJnM2JsTlFVMkp1TkVGUkx6QlFjM0ZhVm5Kc09FOVdWM0ZwU2xseVQyY3pWV1JEVG1aUVdHRUthMDh3ZG5KSVRITjZSVUp5UjNkdWRXNDJWMHByWWxKNVowRTBiVlI2Y1VnMU9HNUZWekJRT0dabmVERXZOVk5RWVZsbWNqWjFkSHBNVEZKblFraEJRZ3BYTUVaRmEyMUNSV2hoUzJkQlNDdHhaVVpUTVZKdGNXNXZhall6VjBWcFJ6bG1WMGs0WjBwbFFtNTJPV1JQT0ZWNVpVZEpVbGxCZVU5cmNVOHpiblJRQ2k5cU5tdDBVbXRvTUZKU2VXTmhkbEJIYjBsV1NsSnphRlFyVjI5MU1saFFka2wxWld4R1FrbERWVlZoTW5OU09FcFlVM2QwY3pka05GRk1Na3BuUTFFS01tWjJUSGhMVnpKcVpubFliQzkwTVhCemNIbDNaRVI1V0M4dlZuZDFiRGt3TVdwUmJUVndUR2hSVlZCcE1rUTRiRFZ0VXpZNGIxQkZSVlJPVmt4WU5BcHhWWGRXT1dkNU1WRXdOMGRZYzI1SVNqWTRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk1SVzFVWWxWTVYyRm1SVGxFWm1aeWNYUnFSR2gzUm5GSVZDdE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRSbGhGUmtkVmRtNU9aRzEzVWpVeVFuUldkMUEwVFRsUVJFWnFTRlYwVkhFMk16UktjVVZrVWxoR2VYbERaRms1VlFvcllrcHNielpaWTNaVWNFVmtSVXRNTUhGWk9HVlNWR1l6TlZseFR6QTVUMU41ZEdWSVNXRjZSMk50TkhWRVkycElTR2t3Y1RBNEwxRlJkbHBZWVRadENpOWtZMjFSTDJGVVlVRndOa1ozVUVzMk5XdExVRTFTYVdaVmNGSkRjUzlsUVV0eE1DOXplR1ZoTHpCemFuRkpTbWxETmtsRGRXSkxUR1E0TUdoc09YZ0tZa2RhUldoQ1FTOXNkMlIyVFhkaVlYVXZPR0p4V0Uxa1VHeHBTbmM1Ulc0MmRDOXZkQ3RLWW1SUUsyUlNVMnh6Y3pJeVVFdHNXVzQ0TTJWTVVWZDZjUW92VVVWb2J6ZGxVSE5xVFdwV1ZGcERUa0l5ZG1sSmFWbzJWbFJqV0UxWWNsQjBURUZGT1hSbUszaHFaa3hqVlROUFdFeEVSVlpRTVdrcmNtWXlSVTFHQ2pGSUwySTNaeXR5Tmt3NGVsWkxlRzR3Uld4eEwwRTNZMVZsU2s1VGVIRkpTemhzU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E2MDA3YjgxLWY3MGYtNDkyYS1hYzYzLWNjMGU5NWMyNGRlMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGRjJYZGpFcmlFRlJYRGF3Rk54QWpPUHltUWQ1UVU3R3FlUVlaWTVBSjFmVTRueGFHbWNmaWJsTw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2572" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:37:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +1129,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b993a5f4-a595-454c-a39a-0959aa934be7 + - 7fb3452f-a94c-43d5-94d4-1b8754838eed status: 200 OK code: 200 duration: "" @@ -344,19 +1140,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.018948Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1422" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:37:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +1162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bf8ec98-af29-431c-b708-8e4a729bd6d5 + - d09a171a-8056-400a-81b4-7b412386943b status: 200 OK code: 200 duration: "" @@ -377,19 +1173,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzFWQ0NteDJSSE13T0RGS1NIVmlTMVZrYUhwWWEwUlBiSEExTDJnM2JsTlFVMkp1TkVGUkx6QlFjM0ZhVm5Kc09FOVdWM0ZwU2xseVQyY3pWV1JEVG1aUVdHRUthMDh3ZG5KSVRITjZSVUp5UjNkdWRXNDJWMHByWWxKNVowRTBiVlI2Y1VnMU9HNUZWekJRT0dabmVERXZOVk5RWVZsbWNqWjFkSHBNVEZKblFraEJRZ3BYTUVaRmEyMUNSV2hoUzJkQlNDdHhaVVpUTVZKdGNXNXZhall6VjBWcFJ6bG1WMGs0WjBwbFFtNTJPV1JQT0ZWNVpVZEpVbGxCZVU5cmNVOHpiblJRQ2k5cU5tdDBVbXRvTUZKU2VXTmhkbEJIYjBsV1NsSnphRlFyVjI5MU1saFFka2wxWld4R1FrbERWVlZoTW5OU09FcFlVM2QwY3pka05GRk1Na3BuUTFFS01tWjJUSGhMVnpKcVpubFliQzkwTVhCemNIbDNaRVI1V0M4dlZuZDFiRGt3TVdwUmJUVndUR2hSVlZCcE1rUTRiRFZ0VXpZNGIxQkZSVlJPVmt4WU5BcHhWWGRXT1dkNU1WRXdOMGRZYzI1SVNqWTRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk1SVzFVWWxWTVYyRm1SVGxFWm1aeWNYUnFSR2gzUm5GSVZDdE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRSbGhGUmtkVmRtNU9aRzEzVWpVeVFuUldkMUEwVFRsUVJFWnFTRlYwVkhFMk16UktjVVZrVWxoR2VYbERaRms1VlFvcllrcHNielpaWTNaVWNFVmtSVXRNTUhGWk9HVlNWR1l6TlZseFR6QTVUMU41ZEdWSVNXRjZSMk50TkhWRVkycElTR2t3Y1RBNEwxRlJkbHBZWVRadENpOWtZMjFSTDJGVVlVRndOa1ozVUVzMk5XdExVRTFTYVdaVmNGSkRjUzlsUVV0eE1DOXplR1ZoTHpCemFuRkpTbWxETmtsRGRXSkxUR1E0TUdoc09YZ0tZa2RhUldoQ1FTOXNkMlIyVFhkaVlYVXZPR0p4V0Uxa1VHeHBTbmM1Ulc0MmRDOXZkQ3RLWW1SUUsyUlNVMnh6Y3pJeVVFdHNXVzQ0TTJWTVVWZDZjUW92VVVWb2J6ZGxVSE5xVFdwV1ZGcERUa0l5ZG1sSmFWbzJWbFJqV0UxWWNsQjBURUZGT1hSbUszaHFaa3hqVlROUFdFeEVSVlpRTVdrcmNtWXlSVTFHQ2pGSUwySTNaeXR5Tmt3NGVsWkxlRzR3Uld4eEwwRTNZMVZsU2s1VGVIRkpTemhzU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E2MDA3YjgxLWY3MGYtNDkyYS1hYzYzLWNjMGU5NWMyNGRlMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGRjJYZGpFcmlFRlJYRGF3Rk54QWpPUHltUWQ1UVU3R3FlUVlaWTVBSjFmVTRueGFHbWNmaWJsTw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2572" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:37:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,32 +1195,261 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a97c4544-4b92-47ec-829e-2a1084f2b37a + - d7a29ef3-d7e9-4b2b-b407-c3d113b02fdb status: 200 OK code: 200 duration: "" - request: - body: '{"name":"default","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 16:37:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7b890d01-2651-49a0-a21f-1080111f58ad + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/pools - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:37:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1172357-5371-4245-832d-bef3d0bb9e31 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:37:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d07718a-407f-448a-a6be-96afbd3cb73b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:37:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8bea89ed-71a4-4ec2-ae02-0967c6db4596 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:37:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8878d353-5d2e-4085-aa4b-f4d81e19730b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:38:04 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ffe6257-c4eb-40e5-9f9d-35eb75b8fdb3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:38:09 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 626503fa-5340-4e8f-b929-d98444c8095f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 + method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325386952Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "570" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:03 GMT + - Wed, 18 Oct 2023 16:38:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +1459,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 393411cb-5d18-4df9-9c2a-12bb9486b01b + - 84391613-c26f-4eca-a129-f6d8da4434a4 status: 200 OK code: 200 duration: "" @@ -445,19 +1470,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:03 GMT + - Wed, 18 Oct 2023 16:38:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +1492,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 234ff553-436e-450c-9b0f-977ebd40c5ce + - 55a24cca-ad95-44ee-991f-56b6be0b07c6 status: 200 OK code: 200 duration: "" @@ -478,19 +1503,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:08 GMT + - Wed, 18 Oct 2023 16:38:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +1525,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 465d9ebe-db99-4587-a0da-347dc09735c9 + - ad156188-7f8c-415e-ac90-f695877159d8 status: 200 OK code: 200 duration: "" @@ -511,19 +1536,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:13 GMT + - Wed, 18 Oct 2023 16:38:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +1558,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21f0bc95-6d7b-4a0f-9174-7252bc28bb00 + - 1414471e-a6b0-42a1-8233-110dcf8e0acf status: 200 OK code: 200 duration: "" @@ -544,19 +1569,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:18 GMT + - Wed, 18 Oct 2023 16:38:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +1591,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f714f5e-ad75-49d8-ab9d-d039369ab48a + - 7f6c20a3-1d51-473f-8bad-126aeed8d8cc status: 200 OK code: 200 duration: "" @@ -577,19 +1602,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:24 GMT + - Wed, 18 Oct 2023 16:38:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +1624,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bc92dda-5ff1-48fd-9cb6-9f8e6faf1eb6 + - 094002bb-5038-4380-a12c-c0046a19a0f7 status: 200 OK code: 200 duration: "" @@ -610,19 +1635,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:29 GMT + - Wed, 18 Oct 2023 16:38:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,7 +1657,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 544ebccc-31e5-4720-b24d-290dff7d1236 + - e2c9e711-61a4-4e81-a983-279549fc4df5 status: 200 OK code: 200 duration: "" @@ -643,19 +1668,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:34 GMT + - Wed, 18 Oct 2023 16:38:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +1690,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be3068bf-e254-4911-8867-c65b4b82a9c8 + - 195e71ce-ccbf-4618-a922-e639ef7e35a5 status: 200 OK code: 200 duration: "" @@ -676,19 +1701,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:39 GMT + - Wed, 18 Oct 2023 16:38:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,7 +1723,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e103f82-1ab8-4395-ad10-fd06a41bcd76 + - 88679d42-b035-4f1a-bd74-8b016caebb48 status: 200 OK code: 200 duration: "" @@ -709,19 +1734,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:44 GMT + - Wed, 18 Oct 2023 16:38:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +1756,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a00aaff-2f5c-4761-982a-101456e1c9d6 + - bb457d82-d40a-42f7-a6d7-374e2dbb1fb7 status: 200 OK code: 200 duration: "" @@ -742,19 +1767,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:49 GMT + - Wed, 18 Oct 2023 16:39:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,7 +1789,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79b488a5-4469-48ee-8139-dde64b5fe42d + - e99125a7-7bc3-4d26-95ef-9ad5218d31ec status: 200 OK code: 200 duration: "" @@ -775,19 +1800,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:54 GMT + - Wed, 18 Oct 2023 16:39:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -797,7 +1822,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12872e82-6a62-4633-a793-71726181af5b + - f3ca723b-4510-4a9f-8eac-2a5794cca008 status: 200 OK code: 200 duration: "" @@ -808,19 +1833,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:59 GMT + - Wed, 18 Oct 2023 16:39:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -830,7 +1855,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4105c25e-a6a7-45c5-9285-c1065ef6f404 + - 7d0042ec-e7b9-4fb5-b296-3915c7604699 status: 200 OK code: 200 duration: "" @@ -841,19 +1866,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:04 GMT + - Wed, 18 Oct 2023 16:39:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -863,7 +1888,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 456d07d7-1981-4fc8-ba30-e7af4e2d729b + - a583dfe8-6a2f-48fa-8690-d9813c150d44 status: 200 OK code: 200 duration: "" @@ -874,19 +1899,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:09 GMT + - Wed, 18 Oct 2023 16:39:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -896,7 +1921,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d1eb93b-aa84-416a-a46c-9767cbafb5e4 + - 0273ddc9-584a-4f3e-9ca6-baa6a4c5e77b status: 200 OK code: 200 duration: "" @@ -907,19 +1932,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:14 GMT + - Wed, 18 Oct 2023 16:39:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +1954,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55a0ce4d-52f3-4f42-a772-9dc03558a7e6 + - fd71d73c-eb98-4c50-a65c-7851a79df8dc status: 200 OK code: 200 duration: "" @@ -940,19 +1965,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:19 GMT + - Wed, 18 Oct 2023 16:39:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -962,7 +1987,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad3b0535-7a10-4f77-b2b8-b869c2585224 + - 949c21d6-7ced-4e20-8ac0-6362739b3142 status: 200 OK code: 200 duration: "" @@ -973,19 +1998,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:24 GMT + - Wed, 18 Oct 2023 16:39:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -995,7 +2020,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6110970-4143-4ee0-bcf0-04605ef6d7cf + - 153cbb4d-d95a-4c09-ac6b-062f8b07157a status: 200 OK code: 200 duration: "" @@ -1006,19 +2031,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:29 GMT + - Wed, 18 Oct 2023 16:39:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1028,7 +2053,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c139b608-bb6b-46fb-a93c-a83e1edcf893 + - 0c768b4a-610c-4b93-ab2d-eb9961c7c20c status: 200 OK code: 200 duration: "" @@ -1039,19 +2064,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:34 GMT + - Wed, 18 Oct 2023 16:39:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1061,7 +2086,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99c6b8ed-d6ae-48a3-8edd-88a9384deec3 + - 3ff96540-e149-49bc-947a-0b6df755e055 status: 200 OK code: 200 duration: "" @@ -1072,19 +2097,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:39 GMT + - Wed, 18 Oct 2023 16:39:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1094,7 +2119,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d508db8-224f-4c49-8d8e-4010bcfdf4b6 + - a0e8e613-6a78-4fb2-9e5e-c7eb0aa634ca status: 200 OK code: 200 duration: "" @@ -1105,19 +2130,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:44 GMT + - Wed, 18 Oct 2023 16:40:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,7 +2152,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eba7b1aa-3548-42f2-9c82-1d7dbbc501ad + - 952f800f-cf0f-491d-a13a-4da75998e6f1 status: 200 OK code: 200 duration: "" @@ -1138,19 +2163,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:49 GMT + - Wed, 18 Oct 2023 16:40:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +2185,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6e4e73c-ed07-47b0-abed-68c567e77144 + - e5e97286-1661-4166-a1f1-0126dcc86a04 status: 200 OK code: 200 duration: "" @@ -1171,19 +2196,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:54 GMT + - Wed, 18 Oct 2023 16:40:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1193,7 +2218,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83c9eed2-c842-45f3-8aff-2ec981fdbd02 + - 8c75324e-1580-443d-8812-eb4b1aba9ecc status: 200 OK code: 200 duration: "" @@ -1204,19 +2229,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:59 GMT + - Wed, 18 Oct 2023 16:40:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1226,7 +2251,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fff8e32-c064-4786-ba2d-b9ffdaa85384 + - 93fd4ec6-453f-45cf-8ecb-fd6e2b207e78 status: 200 OK code: 200 duration: "" @@ -1237,19 +2262,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:05 GMT + - Wed, 18 Oct 2023 16:40:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1259,7 +2284,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa34500c-9a15-497f-8c97-ff14e0473d7d + - e75b7097-5c0c-4107-a9f4-d4d85d167f5c status: 200 OK code: 200 duration: "" @@ -1270,19 +2295,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:10 GMT + - Wed, 18 Oct 2023 16:40:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1292,7 +2317,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45aac0fc-c7d0-4751-a839-6e8e8188e8fe + - 90e50c2b-fb34-4786-a203-67686c5d4277 status: 200 OK code: 200 duration: "" @@ -1303,19 +2328,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:15 GMT + - Wed, 18 Oct 2023 16:40:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1325,7 +2350,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3498f422-1baf-4581-8a6c-d4c51d9d749a + - b55754bb-b9e5-4f8b-9744-a4acb57ed21a status: 200 OK code: 200 duration: "" @@ -1336,19 +2361,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:20 GMT + - Wed, 18 Oct 2023 16:40:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1358,7 +2383,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ce0f2f9-cf73-4fb0-944b-7b23ebacd080 + - a9371aea-a5e3-4e93-8ca3-f6f6cb685680 status: 200 OK code: 200 duration: "" @@ -1369,19 +2394,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:25 GMT + - Wed, 18 Oct 2023 16:40:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1391,7 +2416,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e20dbf06-e805-4cad-992a-8a4421630f6e + - 6a30f24a-3f85-4b59-ad32-a4dab07dbd7e status: 200 OK code: 200 duration: "" @@ -1402,19 +2427,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:30 GMT + - Wed, 18 Oct 2023 16:40:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1424,7 +2449,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cafbcea3-32d4-4f10-b679-cb377e693e14 + - b7991995-dd5d-41f7-93d0-2e08652d8c16 status: 200 OK code: 200 duration: "" @@ -1435,19 +2460,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:35 GMT + - Wed, 18 Oct 2023 16:40:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1457,7 +2482,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62bf26af-eba6-4912-b1ba-6ff72282928c + - 25a7dde6-137f-4466-9548-c60f038449f6 status: 200 OK code: 200 duration: "" @@ -1468,19 +2493,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:40 GMT + - Wed, 18 Oct 2023 16:40:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1490,7 +2515,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb6af4ff-4a33-4a97-bb39-80ecc45ca050 + - 8f039ad7-76cf-43ad-874f-b448ba5c5920 status: 200 OK code: 200 duration: "" @@ -1501,19 +2526,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:45 GMT + - Wed, 18 Oct 2023 16:41:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1523,7 +2548,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6565bf32-15fa-44a6-9ae8-e8e20b191da4 + - 91f325b6-a65b-4041-bdff-fcf48291b34c status: 200 OK code: 200 duration: "" @@ -1534,19 +2559,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:50 GMT + - Wed, 18 Oct 2023 16:41:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1556,7 +2581,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90b8abf2-1139-4c3f-8603-c3e351e023fb + - 0d8b920c-a615-4e31-b341-7de52fac5407 status: 200 OK code: 200 duration: "" @@ -1567,19 +2592,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:55 GMT + - Wed, 18 Oct 2023 16:41:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1589,7 +2614,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e0bbc2d-7245-4655-9ddb-3f0250b12e2e + - ab963469-7119-43bd-bf2b-133bec4cb4c2 status: 200 OK code: 200 duration: "" @@ -1600,19 +2625,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:00 GMT + - Wed, 18 Oct 2023 16:41:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1622,7 +2647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 744df6df-23ce-467c-81b2-014b4a229c8e + - 5ff212e0-9794-43b6-a387-a479c5a2582f status: 200 OK code: 200 duration: "" @@ -1633,19 +2658,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:05 GMT + - Wed, 18 Oct 2023 16:41:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1655,7 +2680,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca30ece9-abaa-410d-bff3-925c44e90e0c + - 00fce1e9-f4d5-416b-919f-7f8a00e1c7f9 status: 200 OK code: 200 duration: "" @@ -1666,19 +2691,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:10 GMT + - Wed, 18 Oct 2023 16:41:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1688,7 +2713,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe8b8276-4e39-49f8-ac59-78f144532514 + - f764f334-1a7b-4469-a858-81d0432d1c17 status: 200 OK code: 200 duration: "" @@ -1699,19 +2724,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:15 GMT + - Wed, 18 Oct 2023 16:41:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1721,7 +2746,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1594137-54c0-4b21-92c6-ca7f023e1afa + - b5e5cf57-75f1-4ed9-b7ec-cdcc97b4509d status: 200 OK code: 200 duration: "" @@ -1732,19 +2757,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:20 GMT + - Wed, 18 Oct 2023 16:41:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1754,7 +2779,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb10533b-b29a-4540-970a-0c3bd9aefd71 + - ecd2001e-cd4d-498d-a004-1f7d78d4ee1d status: 200 OK code: 200 duration: "" @@ -1765,19 +2790,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:25 GMT + - Wed, 18 Oct 2023 16:41:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1787,7 +2812,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e184be7-7d41-4f17-90f0-dfe98e6de651 + - 62ef494a-65b3-466f-854c-f06b25d0e39f status: 200 OK code: 200 duration: "" @@ -1798,19 +2823,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:30 GMT + - Wed, 18 Oct 2023 16:41:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1820,7 +2845,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 334fada5-2406-4739-9263-23ab8b4d0c01 + - b8e98e7d-5aff-4291-b375-e3b6ff46ce87 status: 200 OK code: 200 duration: "" @@ -1831,19 +2856,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:35 GMT + - Wed, 18 Oct 2023 16:41:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1853,7 +2878,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1331597-46c6-4a2a-bf11-d77f83f88d7e + - 83a7ab2a-97ae-460f-91f3-55c8396da16b status: 200 OK code: 200 duration: "" @@ -1864,19 +2889,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:40 GMT + - Wed, 18 Oct 2023 16:41:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1886,7 +2911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29763c68-8428-4ceb-b80c-9d38a3f22df8 + - 48adfeb6-9c31-45ae-a024-8976de2ba5e9 status: 200 OK code: 200 duration: "" @@ -1897,19 +2922,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:46 GMT + - Wed, 18 Oct 2023 16:42:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1919,7 +2944,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22632d2a-2b6f-47b6-9dc4-4ca64564da07 + - 02255eec-f48d-4c12-ad88-5c6dc9deb249 status: 200 OK code: 200 duration: "" @@ -1930,19 +2955,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:51 GMT + - Wed, 18 Oct 2023 16:42:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1952,7 +2977,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78a24548-578e-4395-a813-f5773d0ab902 + - cf7df371-d04a-4dfc-bbdd-6f7a919c883d status: 200 OK code: 200 duration: "" @@ -1963,19 +2988,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:56 GMT + - Wed, 18 Oct 2023 16:42:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1985,7 +3010,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96f686bf-3f79-4e3f-b360-fa590ff5704e + - f204bb9a-d697-40d0-b32a-73218455e095 status: 200 OK code: 200 duration: "" @@ -1996,19 +3021,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:01 GMT + - Wed, 18 Oct 2023 16:42:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2018,7 +3043,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e752d46-b564-41a9-8368-354055f0ad90 + - f0d0a0f6-31e9-4782-9490-168170d7b102 status: 200 OK code: 200 duration: "" @@ -2029,19 +3054,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:06 GMT + - Wed, 18 Oct 2023 16:42:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2051,7 +3076,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a49fdd6-d2a8-4b8e-a65e-7eb786473529 + - 14f8d494-f611-4ca4-b937-d723f1b6ff7c status: 200 OK code: 200 duration: "" @@ -2062,19 +3087,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:11 GMT + - Wed, 18 Oct 2023 16:42:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2084,7 +3109,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a64ab6b-72d0-4f8d-b149-cba0462b3577 + - 88e4d8e3-933e-4b8c-97bb-6f10d2c47ed2 status: 200 OK code: 200 duration: "" @@ -2095,19 +3120,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:16 GMT + - Wed, 18 Oct 2023 16:42:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2117,7 +3142,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88918c80-2e0a-46fa-a1af-f4a4f53f7617 + - 2be0e1a6-fd3b-444c-8974-5c74f367cdd4 status: 200 OK code: 200 duration: "" @@ -2128,19 +3153,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:21 GMT + - Wed, 18 Oct 2023 16:42:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2150,7 +3175,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6d56d89-096f-431c-8c8b-19d2ef36314b + - 1ffda6cb-1b43-4427-8928-a0bad4fd4503 status: 200 OK code: 200 duration: "" @@ -2161,19 +3186,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:26 GMT + - Wed, 18 Oct 2023 16:42:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2183,7 +3208,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7aa7339a-fde4-45fa-a9c7-12c2726559ff + - 00675c6a-29a1-42f6-9d55-8159fd187ea3 status: 200 OK code: 200 duration: "" @@ -2194,19 +3219,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:31 GMT + - Wed, 18 Oct 2023 16:42:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2216,7 +3241,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3681ea87-8a18-429b-a12d-0ea0aacffe3d + - 8f2b7332-12c3-4df3-a634-340a6def6a06 status: 200 OK code: 200 duration: "" @@ -2227,19 +3252,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:36 GMT + - Wed, 18 Oct 2023 16:42:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2249,7 +3274,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 692548bb-e53a-4945-9787-3272371b897f + - e7bd7c4b-4538-48ce-91df-0dbebe06260f status: 200 OK code: 200 duration: "" @@ -2260,19 +3285,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:41 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2282,7 +3307,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eae010ec-1989-441b-993f-d571d7509ee4 + - 153d01dc-8d06-4d3e-b2a9-7f82f90b7dfb status: 200 OK code: 200 duration: "" @@ -2293,19 +3318,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:46 GMT + - Wed, 18 Oct 2023 16:43:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2315,7 +3340,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72b2fc69-330f-4e9b-a292-b8305da21b58 + - a59203de-0ed8-41a3-a4f9-f0d857e58096 status: 200 OK code: 200 duration: "" @@ -2326,19 +3351,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:16:02.325387Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.396429Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "567" + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:51 GMT + - Wed, 18 Oct 2023 16:43:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2348,7 +3373,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc498afe-5ff9-4158-ada5-69e5166c0f63 + - ab19295e-3774-48e3-8a7b-df870185db88 status: 200 OK code: 200 duration: "" @@ -2359,19 +3384,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-09-01T16:20:54.466093Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T16:43:07.266809Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "565" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:56 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2381,7 +3406,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f69d56e-a96c-406e-bef3-7a221a974e57 + - 3e56a562-236d-4a7f-97b3-c341c85b3e7b status: 200 OK code: 200 duration: "" @@ -2392,19 +3417,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1414" + - "1493" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:56 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2414,7 +3439,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 544ddcba-a06f-46fe-9cc1-fa3e6fd40437 + - b91e7ed8-bc94-4e01-9f32-08e367fa271a status: 200 OK code: 200 duration: "" @@ -2425,19 +3450,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-09-01T16:20:54.466093Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T16:43:07.266809Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "565" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:56 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2447,7 +3472,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a93e2cc-59c9-456a-97fc-c5473673de9a + - d9087e64-0b9f-4a1c-9383-4c820a89a22e status: 200 OK code: 200 duration: "" @@ -2458,19 +3483,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/nodes?order_by=created_at_asc&page=1&pool_id=221ea13f-2222-4382-b9e3-62cc1004c08c&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/nodes?order_by=created_at_asc&page=1&pool_id=fbee03e2-145c-4402-aa22-e1d18213d198&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-09-01T16:17:48.013529Z","error_message":null,"id":"5e259a97-156b-4af3-b50b-d90f4d334e0d","name":"scw-tf-cluster-default-5e259a97156b4af3b50bd90","pool_id":"221ea13f-2222-4382-b9e3-62cc1004c08c","provider_id":"scaleway://instance/fr-par-1/fa1b3056-38ea-4113-9369-bbf038be0484","public_ip_v4":"163.172.156.119","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-09-01T16:20:54.453935Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:38:42.808849Z","error_message":null,"id":"bad6db13-3e8f-4d66-a1d0-89d51ba81c8c","name":"scw-tf-cluster-default-bad6db133e8f4d66a1d089d","pool_id":"fbee03e2-145c-4402-aa22-e1d18213d198","provider_id":"scaleway://instance/fr-par-1/3dac039d-34a4-46eb-8b6d-10a79fab3e4e","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:07.251031Z"}],"total_count":1}' headers: Content-Length: - - "607" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:56 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2480,7 +3505,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b691f1d-5217-4b5b-b02d-3550fd335b1d + - 6713446e-e738-4f62-8e29-d97a2576f659 status: 200 OK code: 200 duration: "" @@ -2491,19 +3516,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1414" + - "1493" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:56 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2513,7 +3538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6d9cf24-d18f-477b-804d-c65bb4d59068 + - 033e7e2f-b51e-45e4-a856-1f06754181dc status: 200 OK code: 200 duration: "" @@ -2524,19 +3549,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1414" + - "1493" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2546,7 +3571,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9941a814-48bc-45b7-b268-c9c6b74ecea8 + - 1cc5c5de-ae57-4e9a-84fd-255a7c6ffd4e status: 200 OK code: 200 duration: "" @@ -2557,19 +3582,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1414" + - "1493" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2579,7 +3604,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33c0d252-052f-4c48-8ced-87b90f1a9580 + - a0e6b839-7381-4106-9b87-4dc716a1f9d0 status: 200 OK code: 200 duration: "" @@ -2593,16 +3618,49 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster&order_by=created_at_asc&status=unknown method: GET response: - body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}],"total_count":1}' + body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}],"total_count":1}' + headers: + Content-Length: + - "1525" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b9c37e0c-b3f2-43ae-b33a-d7d2057fb092 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1445" + - "1493" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2612,7 +3670,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69ded208-f696-4780-827b-76b842ee8aca + - 15a90d4f-29f5-4b46-a5a0-1fb4cf830efc status: 200 OK code: 200 duration: "" @@ -2623,19 +3681,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU0eGIxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRodENuaG9OV2RxTldWb1JVUTNMek53VEVKTVFrdFpZamgwT0hwU2RtbHZPSFJHUkdsRlIxTktOMHQzY0RsM1JHZHlSMDh3ZW5BM1lsQmtabTlhTnpNNFRHUUtjbmRuTmtFM1preExkV2hrY0d0aVZFeHpOSHBIT1RkWVdVOUhZMjF6ZEhaeWVVOXFSa2RNVTBSSFNtMVJlR2RMSzBRNU15OUtPVkpSVmtoNmFVVnNkd3AxVVZKQlRsWlRiRUpJVDJGV1VWQlpWWGR1TVVGcFRuVnpVR05vZUZaUFJIRkhiRzloWWpCc01VbEVZMDFXTTFKMldXVTRlbGh2UmtOTVVqRkdkVTh5Q25sR05VaDBaR3R2UTA5MU1saDFNQ3RuUkZkaFRqWTRTRU14VVU1b1dXVmpVVkZLWnpkMFExaE9TRzlpVkZFclFWb3lhelF6ZVdaU1RUVjNWamxVY1RBS1pteHZWRUV3WkhkSFVuRnFNbWR4UkU5MVRHcGxVbGRpU0VSTGJXRkdTekpVWWxKQ1dHRnZiRmRFVG5keVN5dG5Ua04zTDA5ME1WZzNjakpRYUdkRVpRbzBNWGNyUm5SWU1HcEZVMmhyTjBkaVJqQnpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktNMEpaZW1NdkwwRkhaak5pV1ZnMFRFbHVhak53V2tNeGVGUk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJWRmR6TkdOdlJIcFpkbGxUZEROTk1FSmtlVE5JUTJkMmVXdGxTMjlLYkhjMFIyc3ZWa0ZrVVVGRldXSkdPR2QzTVFvdlFuUTJRa3RxUjNGUksxRXJObEZoVGxSa2FWWk9UR054ZEZrek9VOTZXWGhpT0ZRMGQzbFlZMUJzVkZSUmQwTkRjRU5PYlZoMFRteHBRM2RhY1hGdUNqRmtjRUZTYW1SWk5sSlZaSFJ1TUV0TUx6aHBUV1pDVW1Sak5IQjNka0l3VG5weWNWQlJhSEpuTUhSb1NVa3ZSRkpDUVRaRk9VZGtlRWxHY3pRMFptd0tSMnRpYTI5bFZUVTVhR2xNTUZKQlQweENXVzE2TW14dFpVTkJiMnB5UVhKaVNHZFZSREZCTkZCd2NGQmpaWGh2YUdSMFRtRTBPREJwVmsxalJEaHFiUW95TlhNdlExcFhiVTlOYUZOWksxTlhVekZRVUhaeWJ6SkdjblZTTldSWFJFaFdiV3hQUW5GbVMyVnhURlJ5UlZOME1XNVdhVkUzVEVScE1rMVFSRWd3Q2sxdFl5dHFTREZ2ZFZremRpOUlaRW81UmtWMk5reERhQzloYkV3eE0yODNibWxzYmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzgwYWM4MDUxLWQ4YzgtNDRjYi04NzA3LTNlNzE1MGM3MmY1My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEVm12NzZJZVJRUVJJaFJqdG1LcnJrdjk2dWZLZ253RzE5M3VDRmpzQlJVMHp2aHg0V3NMVUpNQg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1414" + - "2574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2645,7 +3703,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70a338b8-565f-44ee-ad04-19ef72c597d2 + - d91e4ed9-9d40-48bb-8e19-745761a55ed0 status: 200 OK code: 200 duration: "" @@ -2656,19 +3714,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzFWQ0NteDJSSE13T0RGS1NIVmlTMVZrYUhwWWEwUlBiSEExTDJnM2JsTlFVMkp1TkVGUkx6QlFjM0ZhVm5Kc09FOVdWM0ZwU2xseVQyY3pWV1JEVG1aUVdHRUthMDh3ZG5KSVRITjZSVUp5UjNkdWRXNDJWMHByWWxKNVowRTBiVlI2Y1VnMU9HNUZWekJRT0dabmVERXZOVk5RWVZsbWNqWjFkSHBNVEZKblFraEJRZ3BYTUVaRmEyMUNSV2hoUzJkQlNDdHhaVVpUTVZKdGNXNXZhall6VjBWcFJ6bG1WMGs0WjBwbFFtNTJPV1JQT0ZWNVpVZEpVbGxCZVU5cmNVOHpiblJRQ2k5cU5tdDBVbXRvTUZKU2VXTmhkbEJIYjBsV1NsSnphRlFyVjI5MU1saFFka2wxWld4R1FrbERWVlZoTW5OU09FcFlVM2QwY3pka05GRk1Na3BuUTFFS01tWjJUSGhMVnpKcVpubFliQzkwTVhCemNIbDNaRVI1V0M4dlZuZDFiRGt3TVdwUmJUVndUR2hSVlZCcE1rUTRiRFZ0VXpZNGIxQkZSVlJPVmt4WU5BcHhWWGRXT1dkNU1WRXdOMGRZYzI1SVNqWTRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk1SVzFVWWxWTVYyRm1SVGxFWm1aeWNYUnFSR2gzUm5GSVZDdE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRSbGhGUmtkVmRtNU9aRzEzVWpVeVFuUldkMUEwVFRsUVJFWnFTRlYwVkhFMk16UktjVVZrVWxoR2VYbERaRms1VlFvcllrcHNielpaWTNaVWNFVmtSVXRNTUhGWk9HVlNWR1l6TlZseFR6QTVUMU41ZEdWSVNXRjZSMk50TkhWRVkycElTR2t3Y1RBNEwxRlJkbHBZWVRadENpOWtZMjFSTDJGVVlVRndOa1ozVUVzMk5XdExVRTFTYVdaVmNGSkRjUzlsUVV0eE1DOXplR1ZoTHpCemFuRkpTbWxETmtsRGRXSkxUR1E0TUdoc09YZ0tZa2RhUldoQ1FTOXNkMlIyVFhkaVlYVXZPR0p4V0Uxa1VHeHBTbmM1Ulc0MmRDOXZkQ3RLWW1SUUsyUlNVMnh6Y3pJeVVFdHNXVzQ0TTJWTVVWZDZjUW92VVVWb2J6ZGxVSE5xVFdwV1ZGcERUa0l5ZG1sSmFWbzJWbFJqV0UxWWNsQjBURUZGT1hSbUszaHFaa3hqVlROUFdFeEVSVlpRTVdrcmNtWXlSVTFHQ2pGSUwySTNaeXR5Tmt3NGVsWkxlRzR3Uld4eEwwRTNZMVZsU2s1VGVIRkpTemhzU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E2MDA3YjgxLWY3MGYtNDkyYS1hYzYzLWNjMGU5NWMyNGRlMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGRjJYZGpFcmlFRlJYRGF3Rk54QWpPUHltUWQ1UVU3R3FlUVlaWTVBSjFmVTRueGFHbWNmaWJsTw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU0eGIxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRodENuaG9OV2RxTldWb1JVUTNMek53VEVKTVFrdFpZamgwT0hwU2RtbHZPSFJHUkdsRlIxTktOMHQzY0RsM1JHZHlSMDh3ZW5BM1lsQmtabTlhTnpNNFRHUUtjbmRuTmtFM1preExkV2hrY0d0aVZFeHpOSHBIT1RkWVdVOUhZMjF6ZEhaeWVVOXFSa2RNVTBSSFNtMVJlR2RMSzBRNU15OUtPVkpSVmtoNmFVVnNkd3AxVVZKQlRsWlRiRUpJVDJGV1VWQlpWWGR1TVVGcFRuVnpVR05vZUZaUFJIRkhiRzloWWpCc01VbEVZMDFXTTFKMldXVTRlbGh2UmtOTVVqRkdkVTh5Q25sR05VaDBaR3R2UTA5MU1saDFNQ3RuUkZkaFRqWTRTRU14VVU1b1dXVmpVVkZLWnpkMFExaE9TRzlpVkZFclFWb3lhelF6ZVdaU1RUVjNWamxVY1RBS1pteHZWRUV3WkhkSFVuRnFNbWR4UkU5MVRHcGxVbGRpU0VSTGJXRkdTekpVWWxKQ1dHRnZiRmRFVG5keVN5dG5Ua04zTDA5ME1WZzNjakpRYUdkRVpRbzBNWGNyUm5SWU1HcEZVMmhyTjBkaVJqQnpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktNMEpaZW1NdkwwRkhaak5pV1ZnMFRFbHVhak53V2tNeGVGUk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJWRmR6TkdOdlJIcFpkbGxUZEROTk1FSmtlVE5JUTJkMmVXdGxTMjlLYkhjMFIyc3ZWa0ZrVVVGRldXSkdPR2QzTVFvdlFuUTJRa3RxUjNGUksxRXJObEZoVGxSa2FWWk9UR054ZEZrek9VOTZXWGhpT0ZRMGQzbFlZMUJzVkZSUmQwTkRjRU5PYlZoMFRteHBRM2RhY1hGdUNqRmtjRUZTYW1SWk5sSlZaSFJ1TUV0TUx6aHBUV1pDVW1Sak5IQjNka0l3VG5weWNWQlJhSEpuTUhSb1NVa3ZSRkpDUVRaRk9VZGtlRWxHY3pRMFptd0tSMnRpYTI5bFZUVTVhR2xNTUZKQlQweENXVzE2TW14dFpVTkJiMnB5UVhKaVNHZFZSREZCTkZCd2NGQmpaWGh2YUdSMFRtRTBPREJwVmsxalJEaHFiUW95TlhNdlExcFhiVTlOYUZOWksxTlhVekZRVUhaeWJ6SkdjblZTTldSWFJFaFdiV3hQUW5GbVMyVnhURlJ5UlZOME1XNVdhVkUzVEVScE1rMVFSRWd3Q2sxdFl5dHFTREZ2ZFZremRpOUlaRW81UmtWMk5reERhQzloYkV3eE0yODNibWxzYmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzgwYWM4MDUxLWQ4YzgtNDRjYi04NzA3LTNlNzE1MGM3MmY1My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEVm12NzZJZVJRUVJJaFJqdG1LcnJrdjk2dWZLZ253RzE5M3VDRmpzQlJVMHp2aHg0V3NMVUpNQg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2572" + - "2574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2678,7 +3736,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe41f6bf-83a7-433a-8671-2b3ae04a1c19 + - 1893a8c6-2fcd-4c59-96df-d3096d07711b status: 200 OK code: 200 duration: "" @@ -2689,19 +3747,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b8465b8c-e70b-481d-ac66-e37207423524 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzFWQ0NteDJSSE13T0RGS1NIVmlTMVZrYUhwWWEwUlBiSEExTDJnM2JsTlFVMkp1TkVGUkx6QlFjM0ZhVm5Kc09FOVdWM0ZwU2xseVQyY3pWV1JEVG1aUVdHRUthMDh3ZG5KSVRITjZSVUp5UjNkdWRXNDJWMHByWWxKNVowRTBiVlI2Y1VnMU9HNUZWekJRT0dabmVERXZOVk5RWVZsbWNqWjFkSHBNVEZKblFraEJRZ3BYTUVaRmEyMUNSV2hoUzJkQlNDdHhaVVpUTVZKdGNXNXZhall6VjBWcFJ6bG1WMGs0WjBwbFFtNTJPV1JQT0ZWNVpVZEpVbGxCZVU5cmNVOHpiblJRQ2k5cU5tdDBVbXRvTUZKU2VXTmhkbEJIYjBsV1NsSnphRlFyVjI5MU1saFFka2wxWld4R1FrbERWVlZoTW5OU09FcFlVM2QwY3pka05GRk1Na3BuUTFFS01tWjJUSGhMVnpKcVpubFliQzkwTVhCemNIbDNaRVI1V0M4dlZuZDFiRGt3TVdwUmJUVndUR2hSVlZCcE1rUTRiRFZ0VXpZNGIxQkZSVlJPVmt4WU5BcHhWWGRXT1dkNU1WRXdOMGRZYzI1SVNqWTRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk1SVzFVWWxWTVYyRm1SVGxFWm1aeWNYUnFSR2gzUm5GSVZDdE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRSbGhGUmtkVmRtNU9aRzEzVWpVeVFuUldkMUEwVFRsUVJFWnFTRlYwVkhFMk16UktjVVZrVWxoR2VYbERaRms1VlFvcllrcHNielpaWTNaVWNFVmtSVXRNTUhGWk9HVlNWR1l6TlZseFR6QTVUMU41ZEdWSVNXRjZSMk50TkhWRVkycElTR2t3Y1RBNEwxRlJkbHBZWVRadENpOWtZMjFSTDJGVVlVRndOa1ozVUVzMk5XdExVRTFTYVdaVmNGSkRjUzlsUVV0eE1DOXplR1ZoTHpCemFuRkpTbWxETmtsRGRXSkxUR1E0TUdoc09YZ0tZa2RhUldoQ1FTOXNkMlIyVFhkaVlYVXZPR0p4V0Uxa1VHeHBTbmM1Ulc0MmRDOXZkQ3RLWW1SUUsyUlNVMnh6Y3pJeVVFdHNXVzQ0TTJWTVVWZDZjUW92VVVWb2J6ZGxVSE5xVFdwV1ZGcERUa0l5ZG1sSmFWbzJWbFJqV0UxWWNsQjBURUZGT1hSbUszaHFaa3hqVlROUFdFeEVSVlpRTVdrcmNtWXlSVTFHQ2pGSUwySTNaeXR5Tmt3NGVsWkxlRzR3Uld4eEwwRTNZMVZsU2s1VGVIRkpTemhzU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E2MDA3YjgxLWY3MGYtNDkyYS1hYzYzLWNjMGU5NWMyNGRlMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGRjJYZGpFcmlFRlJYRGF3Rk54QWpPUHltUWQ1UVU3R3FlUVlaWTVBSjFmVTRueGFHbWNmaWJsTw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:35:44.914318Z","dhcp_enabled":true,"id":"b8465b8c-e70b-481d-ac66-e37207423524","name":"test-data-source-cluster","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.914318Z","id":"aae07c51-5ed7-455e-aa00-aa194556cf64","subnet":"172.16.36.0/22","updated_at":"2023-10-18T16:35:44.914318Z"},{"created_at":"2023-10-18T16:35:44.914318Z","id":"769313be-1e2f-4a8e-9769-9a14e634d57a","subnet":"fd63:256c:45f7:d638::/64","updated_at":"2023-10-18T16:35:44.914318Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.914318Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2572" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2711,7 +3769,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5040e0d7-67b7-4f11-9f94-528eaf68fed5 + - b2db1a87-48e9-4470-a00e-25e9df285df7 status: 200 OK code: 200 duration: "" @@ -2722,19 +3780,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1414" + - "1493" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2744,7 +3802,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28f2c1ce-fc03-4c94-af33-cc443c921681 + - bce7df79-3e38-4252-9dce-f5b8cbeb96c1 status: 200 OK code: 200 duration: "" @@ -2755,19 +3813,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzFWQ0NteDJSSE13T0RGS1NIVmlTMVZrYUhwWWEwUlBiSEExTDJnM2JsTlFVMkp1TkVGUkx6QlFjM0ZhVm5Kc09FOVdWM0ZwU2xseVQyY3pWV1JEVG1aUVdHRUthMDh3ZG5KSVRITjZSVUp5UjNkdWRXNDJWMHByWWxKNVowRTBiVlI2Y1VnMU9HNUZWekJRT0dabmVERXZOVk5RWVZsbWNqWjFkSHBNVEZKblFraEJRZ3BYTUVaRmEyMUNSV2hoUzJkQlNDdHhaVVpUTVZKdGNXNXZhall6VjBWcFJ6bG1WMGs0WjBwbFFtNTJPV1JQT0ZWNVpVZEpVbGxCZVU5cmNVOHpiblJRQ2k5cU5tdDBVbXRvTUZKU2VXTmhkbEJIYjBsV1NsSnphRlFyVjI5MU1saFFka2wxWld4R1FrbERWVlZoTW5OU09FcFlVM2QwY3pka05GRk1Na3BuUTFFS01tWjJUSGhMVnpKcVpubFliQzkwTVhCemNIbDNaRVI1V0M4dlZuZDFiRGt3TVdwUmJUVndUR2hSVlZCcE1rUTRiRFZ0VXpZNGIxQkZSVlJPVmt4WU5BcHhWWGRXT1dkNU1WRXdOMGRZYzI1SVNqWTRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk1SVzFVWWxWTVYyRm1SVGxFWm1aeWNYUnFSR2gzUm5GSVZDdE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRSbGhGUmtkVmRtNU9aRzEzVWpVeVFuUldkMUEwVFRsUVJFWnFTRlYwVkhFMk16UktjVVZrVWxoR2VYbERaRms1VlFvcllrcHNielpaWTNaVWNFVmtSVXRNTUhGWk9HVlNWR1l6TlZseFR6QTVUMU41ZEdWSVNXRjZSMk50TkhWRVkycElTR2t3Y1RBNEwxRlJkbHBZWVRadENpOWtZMjFSTDJGVVlVRndOa1ozVUVzMk5XdExVRTFTYVdaVmNGSkRjUzlsUVV0eE1DOXplR1ZoTHpCemFuRkpTbWxETmtsRGRXSkxUR1E0TUdoc09YZ0tZa2RhUldoQ1FTOXNkMlIyVFhkaVlYVXZPR0p4V0Uxa1VHeHBTbmM1Ulc0MmRDOXZkQ3RLWW1SUUsyUlNVMnh6Y3pJeVVFdHNXVzQ0TTJWTVVWZDZjUW92VVVWb2J6ZGxVSE5xVFdwV1ZGcERUa0l5ZG1sSmFWbzJWbFJqV0UxWWNsQjBURUZGT1hSbUszaHFaa3hqVlROUFdFeEVSVlpRTVdrcmNtWXlSVTFHQ2pGSUwySTNaeXR5Tmt3NGVsWkxlRzR3Uld4eEwwRTNZMVZsU2s1VGVIRkpTemhzU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E2MDA3YjgxLWY3MGYtNDkyYS1hYzYzLWNjMGU5NWMyNGRlMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGRjJYZGpFcmlFRlJYRGF3Rk54QWpPUHltUWQ1UVU3R3FlUVlaWTVBSjFmVTRueGFHbWNmaWJsTw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU0eGIxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRodENuaG9OV2RxTldWb1JVUTNMek53VEVKTVFrdFpZamgwT0hwU2RtbHZPSFJHUkdsRlIxTktOMHQzY0RsM1JHZHlSMDh3ZW5BM1lsQmtabTlhTnpNNFRHUUtjbmRuTmtFM1preExkV2hrY0d0aVZFeHpOSHBIT1RkWVdVOUhZMjF6ZEhaeWVVOXFSa2RNVTBSSFNtMVJlR2RMSzBRNU15OUtPVkpSVmtoNmFVVnNkd3AxVVZKQlRsWlRiRUpJVDJGV1VWQlpWWGR1TVVGcFRuVnpVR05vZUZaUFJIRkhiRzloWWpCc01VbEVZMDFXTTFKMldXVTRlbGh2UmtOTVVqRkdkVTh5Q25sR05VaDBaR3R2UTA5MU1saDFNQ3RuUkZkaFRqWTRTRU14VVU1b1dXVmpVVkZLWnpkMFExaE9TRzlpVkZFclFWb3lhelF6ZVdaU1RUVjNWamxVY1RBS1pteHZWRUV3WkhkSFVuRnFNbWR4UkU5MVRHcGxVbGRpU0VSTGJXRkdTekpVWWxKQ1dHRnZiRmRFVG5keVN5dG5Ua04zTDA5ME1WZzNjakpRYUdkRVpRbzBNWGNyUm5SWU1HcEZVMmhyTjBkaVJqQnpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktNMEpaZW1NdkwwRkhaak5pV1ZnMFRFbHVhak53V2tNeGVGUk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJWRmR6TkdOdlJIcFpkbGxUZEROTk1FSmtlVE5JUTJkMmVXdGxTMjlLYkhjMFIyc3ZWa0ZrVVVGRldXSkdPR2QzTVFvdlFuUTJRa3RxUjNGUksxRXJObEZoVGxSa2FWWk9UR054ZEZrek9VOTZXWGhpT0ZRMGQzbFlZMUJzVkZSUmQwTkRjRU5PYlZoMFRteHBRM2RhY1hGdUNqRmtjRUZTYW1SWk5sSlZaSFJ1TUV0TUx6aHBUV1pDVW1Sak5IQjNka0l3VG5weWNWQlJhSEpuTUhSb1NVa3ZSRkpDUVRaRk9VZGtlRWxHY3pRMFptd0tSMnRpYTI5bFZUVTVhR2xNTUZKQlQweENXVzE2TW14dFpVTkJiMnB5UVhKaVNHZFZSREZCTkZCd2NGQmpaWGh2YUdSMFRtRTBPREJwVmsxalJEaHFiUW95TlhNdlExcFhiVTlOYUZOWksxTlhVekZRVUhaeWJ6SkdjblZTTldSWFJFaFdiV3hQUW5GbVMyVnhURlJ5UlZOME1XNVdhVkUzVEVScE1rMVFSRWd3Q2sxdFl5dHFTREZ2ZFZremRpOUlaRW81UmtWMk5reERhQzloYkV3eE0yODNibWxzYmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzgwYWM4MDUxLWQ4YzgtNDRjYi04NzA3LTNlNzE1MGM3MmY1My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEVm12NzZJZVJRUVJJaFJqdG1LcnJrdjk2dWZLZ253RzE5M3VDRmpzQlJVMHp2aHg0V3NMVUpNQg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2572" + - "2574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2777,7 +3835,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 039bb054-7755-4f3c-9ee7-c34c4a05dff9 + - b7ad169d-18a7-4230-a121-47a20ea92597 status: 200 OK code: 200 duration: "" @@ -2788,19 +3846,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T16:43:07.266809Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1414" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2810,7 +3868,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c33eadb6-6f6f-4c93-bec0-64ac7d367e08 + - 3ab75949-0886-47b6-8222-565f877a6216 status: 200 OK code: 200 duration: "" @@ -2821,19 +3879,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-09-01T16:20:54.466093Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "565" + - "1493" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2843,7 +3901,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ac076cd-c318-4474-8693-fe97659cb1c8 + - a86c3007-f62e-4b09-80bd-e3b8ab3b9249 status: 200 OK code: 200 duration: "" @@ -2857,16 +3915,16 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster&order_by=created_at_asc&status=unknown method: GET response: - body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}],"total_count":1}' + body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}],"total_count":1}' headers: Content-Length: - - "1445" + - "1525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2876,7 +3934,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecf468fb-3bac-4984-b364-6767a5d39be6 + - 5cd0ad18-f47e-4fe0-ae06-5d8f6a179bff status: 200 OK code: 200 duration: "" @@ -2887,19 +3945,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/nodes?order_by=created_at_asc&page=1&pool_id=fbee03e2-145c-4402-aa22-e1d18213d198&status=unknown method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"nodes":[{"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:38:42.808849Z","error_message":null,"id":"bad6db13-3e8f-4d66-a1d0-89d51ba81c8c","name":"scw-tf-cluster-default-bad6db133e8f4d66a1d089d","pool_id":"fbee03e2-145c-4402-aa22-e1d18213d198","provider_id":"scaleway://instance/fr-par-1/3dac039d-34a4-46eb-8b6d-10a79fab3e4e","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:07.251031Z"}],"total_count":1}' headers: Content-Length: - - "1414" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2909,7 +3967,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 559eae31-92ac-499f-a2df-f9dbb40d693e + - 4cdf55ab-72eb-4e49-b277-7dca832d5a1a status: 200 OK code: 200 duration: "" @@ -2920,19 +3978,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/nodes?order_by=created_at_asc&page=1&pool_id=221ea13f-2222-4382-b9e3-62cc1004c08c&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"nodes":[{"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-09-01T16:17:48.013529Z","error_message":null,"id":"5e259a97-156b-4af3-b50b-d90f4d334e0d","name":"scw-tf-cluster-default-5e259a97156b4af3b50bd90","pool_id":"221ea13f-2222-4382-b9e3-62cc1004c08c","provider_id":"scaleway://instance/fr-par-1/fa1b3056-38ea-4113-9369-bbf038be0484","public_ip_v4":"163.172.156.119","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-09-01T16:20:54.453935Z"}],"total_count":1}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "607" + - "1493" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2942,7 +4000,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8d4eb14-6b4d-4ee7-b570-9aba1f8a12c2 + - de09450b-777e-4d98-adb2-2881639736a7 status: 200 OK code: 200 duration: "" @@ -2953,19 +4011,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzFWQ0NteDJSSE13T0RGS1NIVmlTMVZrYUhwWWEwUlBiSEExTDJnM2JsTlFVMkp1TkVGUkx6QlFjM0ZhVm5Kc09FOVdWM0ZwU2xseVQyY3pWV1JEVG1aUVdHRUthMDh3ZG5KSVRITjZSVUp5UjNkdWRXNDJWMHByWWxKNVowRTBiVlI2Y1VnMU9HNUZWekJRT0dabmVERXZOVk5RWVZsbWNqWjFkSHBNVEZKblFraEJRZ3BYTUVaRmEyMUNSV2hoUzJkQlNDdHhaVVpUTVZKdGNXNXZhall6VjBWcFJ6bG1WMGs0WjBwbFFtNTJPV1JQT0ZWNVpVZEpVbGxCZVU5cmNVOHpiblJRQ2k5cU5tdDBVbXRvTUZKU2VXTmhkbEJIYjBsV1NsSnphRlFyVjI5MU1saFFka2wxWld4R1FrbERWVlZoTW5OU09FcFlVM2QwY3pka05GRk1Na3BuUTFFS01tWjJUSGhMVnpKcVpubFliQzkwTVhCemNIbDNaRVI1V0M4dlZuZDFiRGt3TVdwUmJUVndUR2hSVlZCcE1rUTRiRFZ0VXpZNGIxQkZSVlJPVmt4WU5BcHhWWGRXT1dkNU1WRXdOMGRZYzI1SVNqWTRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk1SVzFVWWxWTVYyRm1SVGxFWm1aeWNYUnFSR2gzUm5GSVZDdE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRSbGhGUmtkVmRtNU9aRzEzVWpVeVFuUldkMUEwVFRsUVJFWnFTRlYwVkhFMk16UktjVVZrVWxoR2VYbERaRms1VlFvcllrcHNielpaWTNaVWNFVmtSVXRNTUhGWk9HVlNWR1l6TlZseFR6QTVUMU41ZEdWSVNXRjZSMk50TkhWRVkycElTR2t3Y1RBNEwxRlJkbHBZWVRadENpOWtZMjFSTDJGVVlVRndOa1ozVUVzMk5XdExVRTFTYVdaVmNGSkRjUzlsUVV0eE1DOXplR1ZoTHpCemFuRkpTbWxETmtsRGRXSkxUR1E0TUdoc09YZ0tZa2RhUldoQ1FTOXNkMlIyVFhkaVlYVXZPR0p4V0Uxa1VHeHBTbmM1Ulc0MmRDOXZkQ3RLWW1SUUsyUlNVMnh6Y3pJeVVFdHNXVzQ0TTJWTVVWZDZjUW92VVVWb2J6ZGxVSE5xVFdwV1ZGcERUa0l5ZG1sSmFWbzJWbFJqV0UxWWNsQjBURUZGT1hSbUszaHFaa3hqVlROUFdFeEVSVlpRTVdrcmNtWXlSVTFHQ2pGSUwySTNaeXR5Tmt3NGVsWkxlRzR3Uld4eEwwRTNZMVZsU2s1VGVIRkpTemhzU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E2MDA3YjgxLWY3MGYtNDkyYS1hYzYzLWNjMGU5NWMyNGRlMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGRjJYZGpFcmlFRlJYRGF3Rk54QWpPUHltUWQ1UVU3R3FlUVlaWTVBSjFmVTRueGFHbWNmaWJsTw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU0eGIxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRodENuaG9OV2RxTldWb1JVUTNMek53VEVKTVFrdFpZamgwT0hwU2RtbHZPSFJHUkdsRlIxTktOMHQzY0RsM1JHZHlSMDh3ZW5BM1lsQmtabTlhTnpNNFRHUUtjbmRuTmtFM1preExkV2hrY0d0aVZFeHpOSHBIT1RkWVdVOUhZMjF6ZEhaeWVVOXFSa2RNVTBSSFNtMVJlR2RMSzBRNU15OUtPVkpSVmtoNmFVVnNkd3AxVVZKQlRsWlRiRUpJVDJGV1VWQlpWWGR1TVVGcFRuVnpVR05vZUZaUFJIRkhiRzloWWpCc01VbEVZMDFXTTFKMldXVTRlbGh2UmtOTVVqRkdkVTh5Q25sR05VaDBaR3R2UTA5MU1saDFNQ3RuUkZkaFRqWTRTRU14VVU1b1dXVmpVVkZLWnpkMFExaE9TRzlpVkZFclFWb3lhelF6ZVdaU1RUVjNWamxVY1RBS1pteHZWRUV3WkhkSFVuRnFNbWR4UkU5MVRHcGxVbGRpU0VSTGJXRkdTekpVWWxKQ1dHRnZiRmRFVG5keVN5dG5Ua04zTDA5ME1WZzNjakpRYUdkRVpRbzBNWGNyUm5SWU1HcEZVMmhyTjBkaVJqQnpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktNMEpaZW1NdkwwRkhaak5pV1ZnMFRFbHVhak53V2tNeGVGUk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJWRmR6TkdOdlJIcFpkbGxUZEROTk1FSmtlVE5JUTJkMmVXdGxTMjlLYkhjMFIyc3ZWa0ZrVVVGRldXSkdPR2QzTVFvdlFuUTJRa3RxUjNGUksxRXJObEZoVGxSa2FWWk9UR054ZEZrek9VOTZXWGhpT0ZRMGQzbFlZMUJzVkZSUmQwTkRjRU5PYlZoMFRteHBRM2RhY1hGdUNqRmtjRUZTYW1SWk5sSlZaSFJ1TUV0TUx6aHBUV1pDVW1Sak5IQjNka0l3VG5weWNWQlJhSEpuTUhSb1NVa3ZSRkpDUVRaRk9VZGtlRWxHY3pRMFptd0tSMnRpYTI5bFZUVTVhR2xNTUZKQlQweENXVzE2TW14dFpVTkJiMnB5UVhKaVNHZFZSREZCTkZCd2NGQmpaWGh2YUdSMFRtRTBPREJwVmsxalJEaHFiUW95TlhNdlExcFhiVTlOYUZOWksxTlhVekZRVUhaeWJ6SkdjblZTTldSWFJFaFdiV3hQUW5GbVMyVnhURlJ5UlZOME1XNVdhVkUzVEVScE1rMVFSRWd3Q2sxdFl5dHFTREZ2ZFZremRpOUlaRW81UmtWMk5reERhQzloYkV3eE0yODNibWxzYmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzgwYWM4MDUxLWQ4YzgtNDRjYi04NzA3LTNlNzE1MGM3MmY1My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEVm12NzZJZVJRUVJJaFJqdG1LcnJrdjk2dWZLZ253RzE5M3VDRmpzQlJVMHp2aHg0V3NMVUpNQg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2572" + - "2574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2975,7 +4033,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf521dc7-1525-4485-82d9-feea5ce4716c + - 36e72c12-cc76-436f-b0b2-f2abf804ac97 status: 200 OK code: 200 duration: "" @@ -2986,19 +4044,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzFWQ0NteDJSSE13T0RGS1NIVmlTMVZrYUhwWWEwUlBiSEExTDJnM2JsTlFVMkp1TkVGUkx6QlFjM0ZhVm5Kc09FOVdWM0ZwU2xseVQyY3pWV1JEVG1aUVdHRUthMDh3ZG5KSVRITjZSVUp5UjNkdWRXNDJWMHByWWxKNVowRTBiVlI2Y1VnMU9HNUZWekJRT0dabmVERXZOVk5RWVZsbWNqWjFkSHBNVEZKblFraEJRZ3BYTUVaRmEyMUNSV2hoUzJkQlNDdHhaVVpUTVZKdGNXNXZhall6VjBWcFJ6bG1WMGs0WjBwbFFtNTJPV1JQT0ZWNVpVZEpVbGxCZVU5cmNVOHpiblJRQ2k5cU5tdDBVbXRvTUZKU2VXTmhkbEJIYjBsV1NsSnphRlFyVjI5MU1saFFka2wxWld4R1FrbERWVlZoTW5OU09FcFlVM2QwY3pka05GRk1Na3BuUTFFS01tWjJUSGhMVnpKcVpubFliQzkwTVhCemNIbDNaRVI1V0M4dlZuZDFiRGt3TVdwUmJUVndUR2hSVlZCcE1rUTRiRFZ0VXpZNGIxQkZSVlJPVmt4WU5BcHhWWGRXT1dkNU1WRXdOMGRZYzI1SVNqWTRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk1SVzFVWWxWTVYyRm1SVGxFWm1aeWNYUnFSR2gzUm5GSVZDdE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRSbGhGUmtkVmRtNU9aRzEzVWpVeVFuUldkMUEwVFRsUVJFWnFTRlYwVkhFMk16UktjVVZrVWxoR2VYbERaRms1VlFvcllrcHNielpaWTNaVWNFVmtSVXRNTUhGWk9HVlNWR1l6TlZseFR6QTVUMU41ZEdWSVNXRjZSMk50TkhWRVkycElTR2t3Y1RBNEwxRlJkbHBZWVRadENpOWtZMjFSTDJGVVlVRndOa1ozVUVzMk5XdExVRTFTYVdaVmNGSkRjUzlsUVV0eE1DOXplR1ZoTHpCemFuRkpTbWxETmtsRGRXSkxUR1E0TUdoc09YZ0tZa2RhUldoQ1FTOXNkMlIyVFhkaVlYVXZPR0p4V0Uxa1VHeHBTbmM1Ulc0MmRDOXZkQ3RLWW1SUUsyUlNVMnh6Y3pJeVVFdHNXVzQ0TTJWTVVWZDZjUW92VVVWb2J6ZGxVSE5xVFdwV1ZGcERUa0l5ZG1sSmFWbzJWbFJqV0UxWWNsQjBURUZGT1hSbUszaHFaa3hqVlROUFdFeEVSVlpRTVdrcmNtWXlSVTFHQ2pGSUwySTNaeXR5Tmt3NGVsWkxlRzR3Uld4eEwwRTNZMVZsU2s1VGVIRkpTemhzU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E2MDA3YjgxLWY3MGYtNDkyYS1hYzYzLWNjMGU5NWMyNGRlMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGRjJYZGpFcmlFRlJYRGF3Rk54QWpPUHltUWQ1UVU3R3FlUVlaWTVBSjFmVTRueGFHbWNmaWJsTw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU0eGIxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRodENuaG9OV2RxTldWb1JVUTNMek53VEVKTVFrdFpZamgwT0hwU2RtbHZPSFJHUkdsRlIxTktOMHQzY0RsM1JHZHlSMDh3ZW5BM1lsQmtabTlhTnpNNFRHUUtjbmRuTmtFM1preExkV2hrY0d0aVZFeHpOSHBIT1RkWVdVOUhZMjF6ZEhaeWVVOXFSa2RNVTBSSFNtMVJlR2RMSzBRNU15OUtPVkpSVmtoNmFVVnNkd3AxVVZKQlRsWlRiRUpJVDJGV1VWQlpWWGR1TVVGcFRuVnpVR05vZUZaUFJIRkhiRzloWWpCc01VbEVZMDFXTTFKMldXVTRlbGh2UmtOTVVqRkdkVTh5Q25sR05VaDBaR3R2UTA5MU1saDFNQ3RuUkZkaFRqWTRTRU14VVU1b1dXVmpVVkZLWnpkMFExaE9TRzlpVkZFclFWb3lhelF6ZVdaU1RUVjNWamxVY1RBS1pteHZWRUV3WkhkSFVuRnFNbWR4UkU5MVRHcGxVbGRpU0VSTGJXRkdTekpVWWxKQ1dHRnZiRmRFVG5keVN5dG5Ua04zTDA5ME1WZzNjakpRYUdkRVpRbzBNWGNyUm5SWU1HcEZVMmhyTjBkaVJqQnpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktNMEpaZW1NdkwwRkhaak5pV1ZnMFRFbHVhak53V2tNeGVGUk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJWRmR6TkdOdlJIcFpkbGxUZEROTk1FSmtlVE5JUTJkMmVXdGxTMjlLYkhjMFIyc3ZWa0ZrVVVGRldXSkdPR2QzTVFvdlFuUTJRa3RxUjNGUksxRXJObEZoVGxSa2FWWk9UR054ZEZrek9VOTZXWGhpT0ZRMGQzbFlZMUJzVkZSUmQwTkRjRU5PYlZoMFRteHBRM2RhY1hGdUNqRmtjRUZTYW1SWk5sSlZaSFJ1TUV0TUx6aHBUV1pDVW1Sak5IQjNka0l3VG5weWNWQlJhSEpuTUhSb1NVa3ZSRkpDUVRaRk9VZGtlRWxHY3pRMFptd0tSMnRpYTI5bFZUVTVhR2xNTUZKQlQweENXVzE2TW14dFpVTkJiMnB5UVhKaVNHZFZSREZCTkZCd2NGQmpaWGh2YUdSMFRtRTBPREJwVmsxalJEaHFiUW95TlhNdlExcFhiVTlOYUZOWksxTlhVekZRVUhaeWJ6SkdjblZTTldSWFJFaFdiV3hQUW5GbVMyVnhURlJ5UlZOME1XNVdhVkUzVEVScE1rMVFSRWd3Q2sxdFl5dHFTREZ2ZFZremRpOUlaRW81UmtWMk5reERhQzloYkV3eE0yODNibWxzYmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzgwYWM4MDUxLWQ4YzgtNDRjYi04NzA3LTNlNzE1MGM3MmY1My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEVm12NzZJZVJRUVJJaFJqdG1LcnJrdjk2dWZLZ253RzE5M3VDRmpzQlJVMHp2aHg0V3NMVUpNQg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2572" + - "2574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3008,7 +4066,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05ebd4bb-d912-46f6-b3e4-4286a5c07311 + - db9a143d-3f53-45e6-bbba-2b800c2f92d3 status: 200 OK code: 200 duration: "" @@ -3019,19 +4077,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1414" + - "1493" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3041,7 +4099,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5876590e-4569-4ec7-bb10-be796928e24f + - a7da270d-1d86-44dc-a951-79d5904bc23a status: 200 OK code: 200 duration: "" @@ -3055,16 +4113,16 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster&order_by=created_at_asc&status=unknown method: GET response: - body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}],"total_count":1}' + body: '{"clusters":[{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}],"total_count":1}' headers: Content-Length: - - "1445" + - "1525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3074,7 +4132,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 050fe048-b5e5-4de8-ad94-c98004b2a418 + - ec70f6d2-fc0b-47b7-a5c2-b2867046f5fb status: 200 OK code: 200 duration: "" @@ -3085,19 +4143,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:17:37.446238Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:37:15.310850Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1414" + - "1493" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3107,7 +4165,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7e405e6-af26-4c2c-b384-6530a31f585a + - c868ecb2-d0a9-470c-af62-f6f529db53b3 status: 200 OK code: 200 duration: "" @@ -3118,19 +4176,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzFWQ0NteDJSSE13T0RGS1NIVmlTMVZrYUhwWWEwUlBiSEExTDJnM2JsTlFVMkp1TkVGUkx6QlFjM0ZhVm5Kc09FOVdWM0ZwU2xseVQyY3pWV1JEVG1aUVdHRUthMDh3ZG5KSVRITjZSVUp5UjNkdWRXNDJWMHByWWxKNVowRTBiVlI2Y1VnMU9HNUZWekJRT0dabmVERXZOVk5RWVZsbWNqWjFkSHBNVEZKblFraEJRZ3BYTUVaRmEyMUNSV2hoUzJkQlNDdHhaVVpUTVZKdGNXNXZhall6VjBWcFJ6bG1WMGs0WjBwbFFtNTJPV1JQT0ZWNVpVZEpVbGxCZVU5cmNVOHpiblJRQ2k5cU5tdDBVbXRvTUZKU2VXTmhkbEJIYjBsV1NsSnphRlFyVjI5MU1saFFka2wxWld4R1FrbERWVlZoTW5OU09FcFlVM2QwY3pka05GRk1Na3BuUTFFS01tWjJUSGhMVnpKcVpubFliQzkwTVhCemNIbDNaRVI1V0M4dlZuZDFiRGt3TVdwUmJUVndUR2hSVlZCcE1rUTRiRFZ0VXpZNGIxQkZSVlJPVmt4WU5BcHhWWGRXT1dkNU1WRXdOMGRZYzI1SVNqWTRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk1SVzFVWWxWTVYyRm1SVGxFWm1aeWNYUnFSR2gzUm5GSVZDdE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRSbGhGUmtkVmRtNU9aRzEzVWpVeVFuUldkMUEwVFRsUVJFWnFTRlYwVkhFMk16UktjVVZrVWxoR2VYbERaRms1VlFvcllrcHNielpaWTNaVWNFVmtSVXRNTUhGWk9HVlNWR1l6TlZseFR6QTVUMU41ZEdWSVNXRjZSMk50TkhWRVkycElTR2t3Y1RBNEwxRlJkbHBZWVRadENpOWtZMjFSTDJGVVlVRndOa1ozVUVzMk5XdExVRTFTYVdaVmNGSkRjUzlsUVV0eE1DOXplR1ZoTHpCemFuRkpTbWxETmtsRGRXSkxUR1E0TUdoc09YZ0tZa2RhUldoQ1FTOXNkMlIyVFhkaVlYVXZPR0p4V0Uxa1VHeHBTbmM1Ulc0MmRDOXZkQ3RLWW1SUUsyUlNVMnh6Y3pJeVVFdHNXVzQ0TTJWTVVWZDZjUW92VVVWb2J6ZGxVSE5xVFdwV1ZGcERUa0l5ZG1sSmFWbzJWbFJqV0UxWWNsQjBURUZGT1hSbUszaHFaa3hqVlROUFdFeEVSVlpRTVdrcmNtWXlSVTFHQ2pGSUwySTNaeXR5Tmt3NGVsWkxlRzR3Uld4eEwwRTNZMVZsU2s1VGVIRkpTemhzU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E2MDA3YjgxLWY3MGYtNDkyYS1hYzYzLWNjMGU5NWMyNGRlMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGRjJYZGpFcmlFRlJYRGF3Rk54QWpPUHltUWQ1UVU3R3FlUVlaWTVBSjFmVTRueGFHbWNmaWJsTw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU0eGIxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRodENuaG9OV2RxTldWb1JVUTNMek53VEVKTVFrdFpZamgwT0hwU2RtbHZPSFJHUkdsRlIxTktOMHQzY0RsM1JHZHlSMDh3ZW5BM1lsQmtabTlhTnpNNFRHUUtjbmRuTmtFM1preExkV2hrY0d0aVZFeHpOSHBIT1RkWVdVOUhZMjF6ZEhaeWVVOXFSa2RNVTBSSFNtMVJlR2RMSzBRNU15OUtPVkpSVmtoNmFVVnNkd3AxVVZKQlRsWlRiRUpJVDJGV1VWQlpWWGR1TVVGcFRuVnpVR05vZUZaUFJIRkhiRzloWWpCc01VbEVZMDFXTTFKMldXVTRlbGh2UmtOTVVqRkdkVTh5Q25sR05VaDBaR3R2UTA5MU1saDFNQ3RuUkZkaFRqWTRTRU14VVU1b1dXVmpVVkZLWnpkMFExaE9TRzlpVkZFclFWb3lhelF6ZVdaU1RUVjNWamxVY1RBS1pteHZWRUV3WkhkSFVuRnFNbWR4UkU5MVRHcGxVbGRpU0VSTGJXRkdTekpVWWxKQ1dHRnZiRmRFVG5keVN5dG5Ua04zTDA5ME1WZzNjakpRYUdkRVpRbzBNWGNyUm5SWU1HcEZVMmhyTjBkaVJqQnpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktNMEpaZW1NdkwwRkhaak5pV1ZnMFRFbHVhak53V2tNeGVGUk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJWRmR6TkdOdlJIcFpkbGxUZEROTk1FSmtlVE5JUTJkMmVXdGxTMjlLYkhjMFIyc3ZWa0ZrVVVGRldXSkdPR2QzTVFvdlFuUTJRa3RxUjNGUksxRXJObEZoVGxSa2FWWk9UR054ZEZrek9VOTZXWGhpT0ZRMGQzbFlZMUJzVkZSUmQwTkRjRU5PYlZoMFRteHBRM2RhY1hGdUNqRmtjRUZTYW1SWk5sSlZaSFJ1TUV0TUx6aHBUV1pDVW1Sak5IQjNka0l3VG5weWNWQlJhSEpuTUhSb1NVa3ZSRkpDUVRaRk9VZGtlRWxHY3pRMFptd0tSMnRpYTI5bFZUVTVhR2xNTUZKQlQweENXVzE2TW14dFpVTkJiMnB5UVhKaVNHZFZSREZCTkZCd2NGQmpaWGh2YUdSMFRtRTBPREJwVmsxalJEaHFiUW95TlhNdlExcFhiVTlOYUZOWksxTlhVekZRVUhaeWJ6SkdjblZTTldSWFJFaFdiV3hQUW5GbVMyVnhURlJ5UlZOME1XNVdhVkUzVEVScE1rMVFSRWd3Q2sxdFl5dHFTREZ2ZFZremRpOUlaRW81UmtWMk5reERhQzloYkV3eE0yODNibWxzYmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzgwYWM4MDUxLWQ4YzgtNDRjYi04NzA3LTNlNzE1MGM3MmY1My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEVm12NzZJZVJRUVJJaFJqdG1LcnJrdjk2dWZLZ253RzE5M3VDRmpzQlJVMHp2aHg0V3NMVUpNQg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2572" + - "2574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3140,7 +4198,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11fe4e01-8830-4141-9eb2-0bd5d177b65a + - a412d9bb-ae59-4ba2-855b-d5b6a2893daa status: 200 OK code: 200 duration: "" @@ -3151,19 +4209,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzFWQ0NteDJSSE13T0RGS1NIVmlTMVZrYUhwWWEwUlBiSEExTDJnM2JsTlFVMkp1TkVGUkx6QlFjM0ZhVm5Kc09FOVdWM0ZwU2xseVQyY3pWV1JEVG1aUVdHRUthMDh3ZG5KSVRITjZSVUp5UjNkdWRXNDJWMHByWWxKNVowRTBiVlI2Y1VnMU9HNUZWekJRT0dabmVERXZOVk5RWVZsbWNqWjFkSHBNVEZKblFraEJRZ3BYTUVaRmEyMUNSV2hoUzJkQlNDdHhaVVpUTVZKdGNXNXZhall6VjBWcFJ6bG1WMGs0WjBwbFFtNTJPV1JQT0ZWNVpVZEpVbGxCZVU5cmNVOHpiblJRQ2k5cU5tdDBVbXRvTUZKU2VXTmhkbEJIYjBsV1NsSnphRlFyVjI5MU1saFFka2wxWld4R1FrbERWVlZoTW5OU09FcFlVM2QwY3pka05GRk1Na3BuUTFFS01tWjJUSGhMVnpKcVpubFliQzkwTVhCemNIbDNaRVI1V0M4dlZuZDFiRGt3TVdwUmJUVndUR2hSVlZCcE1rUTRiRFZ0VXpZNGIxQkZSVlJPVmt4WU5BcHhWWGRXT1dkNU1WRXdOMGRZYzI1SVNqWTRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk1SVzFVWWxWTVYyRm1SVGxFWm1aeWNYUnFSR2gzUm5GSVZDdE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRSbGhGUmtkVmRtNU9aRzEzVWpVeVFuUldkMUEwVFRsUVJFWnFTRlYwVkhFMk16UktjVVZrVWxoR2VYbERaRms1VlFvcllrcHNielpaWTNaVWNFVmtSVXRNTUhGWk9HVlNWR1l6TlZseFR6QTVUMU41ZEdWSVNXRjZSMk50TkhWRVkycElTR2t3Y1RBNEwxRlJkbHBZWVRadENpOWtZMjFSTDJGVVlVRndOa1ozVUVzMk5XdExVRTFTYVdaVmNGSkRjUzlsUVV0eE1DOXplR1ZoTHpCemFuRkpTbWxETmtsRGRXSkxUR1E0TUdoc09YZ0tZa2RhUldoQ1FTOXNkMlIyVFhkaVlYVXZPR0p4V0Uxa1VHeHBTbmM1Ulc0MmRDOXZkQ3RLWW1SUUsyUlNVMnh6Y3pJeVVFdHNXVzQ0TTJWTVVWZDZjUW92VVVWb2J6ZGxVSE5xVFdwV1ZGcERUa0l5ZG1sSmFWbzJWbFJqV0UxWWNsQjBURUZGT1hSbUszaHFaa3hqVlROUFdFeEVSVlpRTVdrcmNtWXlSVTFHQ2pGSUwySTNaeXR5Tmt3NGVsWkxlRzR3Uld4eEwwRTNZMVZsU2s1VGVIRkpTemhzU1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2E2MDA3YjgxLWY3MGYtNDkyYS1hYzYzLWNjMGU5NWMyNGRlMC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGRjJYZGpFcmlFRlJYRGF3Rk54QWpPUHltUWQ1UVU3R3FlUVlaWTVBSjFmVTRueGFHbWNmaWJsTw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU0eGIxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRodENuaG9OV2RxTldWb1JVUTNMek53VEVKTVFrdFpZamgwT0hwU2RtbHZPSFJHUkdsRlIxTktOMHQzY0RsM1JHZHlSMDh3ZW5BM1lsQmtabTlhTnpNNFRHUUtjbmRuTmtFM1preExkV2hrY0d0aVZFeHpOSHBIT1RkWVdVOUhZMjF6ZEhaeWVVOXFSa2RNVTBSSFNtMVJlR2RMSzBRNU15OUtPVkpSVmtoNmFVVnNkd3AxVVZKQlRsWlRiRUpJVDJGV1VWQlpWWGR1TVVGcFRuVnpVR05vZUZaUFJIRkhiRzloWWpCc01VbEVZMDFXTTFKMldXVTRlbGh2UmtOTVVqRkdkVTh5Q25sR05VaDBaR3R2UTA5MU1saDFNQ3RuUkZkaFRqWTRTRU14VVU1b1dXVmpVVkZLWnpkMFExaE9TRzlpVkZFclFWb3lhelF6ZVdaU1RUVjNWamxVY1RBS1pteHZWRUV3WkhkSFVuRnFNbWR4UkU5MVRHcGxVbGRpU0VSTGJXRkdTekpVWWxKQ1dHRnZiRmRFVG5keVN5dG5Ua04zTDA5ME1WZzNjakpRYUdkRVpRbzBNWGNyUm5SWU1HcEZVMmhyTjBkaVJqQnpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktNMEpaZW1NdkwwRkhaak5pV1ZnMFRFbHVhak53V2tNeGVGUk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJWRmR6TkdOdlJIcFpkbGxUZEROTk1FSmtlVE5JUTJkMmVXdGxTMjlLYkhjMFIyc3ZWa0ZrVVVGRldXSkdPR2QzTVFvdlFuUTJRa3RxUjNGUksxRXJObEZoVGxSa2FWWk9UR054ZEZrek9VOTZXWGhpT0ZRMGQzbFlZMUJzVkZSUmQwTkRjRU5PYlZoMFRteHBRM2RhY1hGdUNqRmtjRUZTYW1SWk5sSlZaSFJ1TUV0TUx6aHBUV1pDVW1Sak5IQjNka0l3VG5weWNWQlJhSEpuTUhSb1NVa3ZSRkpDUVRaRk9VZGtlRWxHY3pRMFptd0tSMnRpYTI5bFZUVTVhR2xNTUZKQlQweENXVzE2TW14dFpVTkJiMnB5UVhKaVNHZFZSREZCTkZCd2NGQmpaWGh2YUdSMFRtRTBPREJwVmsxalJEaHFiUW95TlhNdlExcFhiVTlOYUZOWksxTlhVekZRVUhaeWJ6SkdjblZTTldSWFJFaFdiV3hQUW5GbVMyVnhURlJ5UlZOME1XNVdhVkUzVEVScE1rMVFSRWd3Q2sxdFl5dHFTREZ2ZFZremRpOUlaRW81UmtWMk5reERhQzloYkV3eE0yODNibWxzYmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzgwYWM4MDUxLWQ4YzgtNDRjYi04NzA3LTNlNzE1MGM3MmY1My5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0Zi1jbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0Zi1jbHVzdGVyIgogICAgdXNlcjogdGYtY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRmLWNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0Zi1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEVm12NzZJZVJRUVJJaFJqdG1LcnJrdjk2dWZLZ253RzE5M3VDRmpzQlJVMHp2aHg0V3NMVUpNQg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2572" + - "2574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:57 GMT + - Wed, 18 Oct 2023 16:43:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3173,7 +4231,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 898b65ae-61e0-40ef-8f41-8151d7673166 + - c57e8374-ccd8-40aa-ad30-26c3cb2f22d8 status: 200 OK code: 200 duration: "" @@ -3184,19 +4242,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/221ea13f-2222-4382-b9e3-62cc1004c08c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbee03e2-145c-4402-aa22-e1d18213d198 method: DELETE response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","container_runtime":"containerd","created_at":"2023-09-01T16:16:02.311985Z","id":"221ea13f-2222-4382-b9e3-62cc1004c08c","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-09-01T16:20:58.034177738Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.379633Z","id":"fbee03e2-145c-4402-aa22-e1d18213d198","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-18T16:43:14.671542684Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "571" + - "621" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:58 GMT + - Wed, 18 Oct 2023 16:43:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3206,7 +4264,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3209e79-5e2a-47af-9906-0c167841f1b7 + - d2857d15-e9ba-40e6-ac01-732292cbde93 status: 200 OK code: 200 duration: "" @@ -3217,19 +4275,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53?with_additional_resources=true method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:20:58.111486755Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:43:14.736067809Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1420" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:58 GMT + - Wed, 18 Oct 2023 16:43:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3239,7 +4297,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d46916d-778f-401d-8433-bfb73d2449e4 + - 7f99c940-451d-4a41-bba8-1ccf51e90d3c status: 200 OK code: 200 duration: "" @@ -3250,19 +4308,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:20:58.111487Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:43:14.736068Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1417" + - "1496" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:58 GMT + - Wed, 18 Oct 2023 16:43:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3272,7 +4330,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e510960d-d110-4840-b8f4-fbb61c3adfcd + - f78f59b8-5a27-41a7-9af3-cd121b0a3b1e status: 200 OK code: 200 duration: "" @@ -3283,19 +4341,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:20:58.111487Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:43:14.736068Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1417" + - "1496" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:03 GMT + - Wed, 18 Oct 2023 16:43:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3305,7 +4363,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62a0cf71-9bf6-4e19-8f8b-b1c87846eae7 + - 285215df-ecd8-4457-95cb-9202f854105f status: 200 OK code: 200 duration: "" @@ -3316,19 +4374,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:20:58.111487Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:43:14.736068Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1417" + - "1496" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:08 GMT + - Wed, 18 Oct 2023 16:43:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3338,7 +4396,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b72d777-c340-4052-b518-431212e3f0ce + - c5a72542-6575-4e6a-8f06-9d686c6c430a status: 200 OK code: 200 duration: "" @@ -3349,19 +4407,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a6007b81-f70f-492a-ac63-cc0e95c24de0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.809727Z","created_at":"2023-09-01T16:15:56.809727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a6007b81-f70f-492a-ac63-cc0e95c24de0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-09-01T16:20:58.111487Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://80ac8051-d8c8-44cb-8707-3e7150c72f53.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.992605Z","created_at":"2023-10-18T16:35:45.992605Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.80ac8051-d8c8-44cb-8707-3e7150c72f53.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","ingress":"none","name":"tf-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b8465b8c-e70b-481d-ac66-e37207423524","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"type":"kapsule","updated_at":"2023-10-18T16:43:14.736068Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1417" + - "1496" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:13 GMT + - Wed, 18 Oct 2023 16:43:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3371,7 +4429,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1922c359-12db-4ca1-b405-bc6214d9e420 + - fa1213f1-5f25-407b-853f-eee3e1d3b9df status: 200 OK code: 200 duration: "" @@ -3382,10 +4440,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","type":"not_found"}' headers: Content-Length: - "128" @@ -3394,7 +4452,40 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:18 GMT + - Wed, 18 Oct 2023 16:43:35 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e366fc6c-fdf5-46a7-a4f9-34958063ff2f + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b8465b8c-e70b-481d-ac66-e37207423524 + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"b8465b8c-e70b-481d-ac66-e37207423524","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3404,7 +4495,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7358533e-5c2b-4bec-9e19-3317b0ae914b + - 85f76ad8-943f-4e83-af7c-f1d82cb33449 status: 404 Not Found code: 404 duration: "" @@ -3415,10 +4506,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","type":"not_found"}' headers: Content-Length: - "128" @@ -3427,7 +4518,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:18 GMT + - Wed, 18 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3437,7 +4528,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ddb2375-79de-4af3-b74c-b62438434cdc + - f81ce10c-5cc3-47a8-a968-cb86c1b9b61d status: 404 Not Found code: 404 duration: "" @@ -3448,10 +4539,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","type":"not_found"}' headers: Content-Length: - "128" @@ -3460,7 +4551,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:18 GMT + - Wed, 18 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3470,7 +4561,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 005bb784-807e-4e2b-b11c-6d9c76736e88 + - 88eb4f34-6b36-4a65-99db-fc63356882c7 status: 404 Not Found code: 404 duration: "" @@ -3481,10 +4572,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a6007b81-f70f-492a-ac63-cc0e95c24de0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/80ac8051-d8c8-44cb-8707-3e7150c72f53 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"a6007b81-f70f-492a-ac63-cc0e95c24de0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"80ac8051-d8c8-44cb-8707-3e7150c72f53","type":"not_found"}' headers: Content-Length: - "128" @@ -3493,7 +4584,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:18 GMT + - Wed, 18 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3503,7 +4594,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54f88e6c-84b1-4a13-b0c0-84ce250829a1 + - d7867e73-bf45-4b84-b983-dc316faa3534 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-auto-upgrade.cassette.yaml b/scaleway/testdata/k8s-cluster-auto-upgrade.cassette.yaml index be13114a39..e9c66c536c 100644 --- a/scaleway/testdata/k8s-cluster-auto-upgrade.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-auto-upgrade.cassette.yaml @@ -12,11 +12,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,7 +34,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2026a74-e77e-41c5-a680-427590fe2360 + - 17202fb0-9c3d-43e4-a182-fecb8e1d0c2e status: 200 OK code: 200 duration: "" @@ -49,11 +49,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -61,7 +61,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -71,7 +71,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f91b5d0-93ea-4f2b-b9ac-678c97c02cdc + - 2381b7e7-7e5c-4f70-b3e9-88eb25f2ebba status: 200 OK code: 200 duration: "" @@ -86,11 +86,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -98,7 +98,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -108,7 +108,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 000dbf89-0ad2-4828-9da9-dec57fd36c04 + - db488340-aa00-46c5-9a3f-07fcdc1090eb status: 200 OK code: 200 duration: "" @@ -123,11 +123,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -135,7 +135,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -145,12 +145,80 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b22c077c-6109-42e2-b1ad-1994f61b54d0 + - 6b0a81d6-9151-421b-b96c-93c8a48dbe60 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"default-pool","description":"","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"version":"1.27.4","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":{"enable":false,"maintenance_window":{"start_hour":0,"day":"any"}},"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-auto-upgrade","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "717" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b9ae143d-0e41-4918-84c4-a8813490447b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b + method: GET + response: + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "717" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2fa4afea-ed5f-455b-bd68-650c394a7530 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-auto-upgrade","description":"","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"version":"1.27.6","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":{"enable":false,"maintenance_window":{"start_hour":0,"day":"any"}},"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b"}' form: {} headers: Content-Type: @@ -161,16 +229,16 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753098955Z","created_at":"2023-09-01T16:15:56.753098955Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:15:56.764860430Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195709950Z","created_at":"2023-10-18T16:43:45.195709950Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:45.207921783Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1429" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:56 GMT + - Wed, 18 Oct 2023 16:43:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -180,7 +248,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a841126-b9a4-4ad2-a195-da2667025eab + - c2b1694e-ab9c-4f0d-bdfe-9ec126fea87e status: 200 OK code: 200 duration: "" @@ -191,19 +259,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:15:56.764860Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:45.207922Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1420" + - "1504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:56 GMT + - Wed, 18 Oct 2023 16:43:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -213,7 +281,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9f3e83c-39b1-48bf-b169-53428809ed65 + - dfca8aa7-ddb5-4836-b2e0-566ec3d08c63 status: 200 OK code: 200 duration: "" @@ -224,19 +292,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.008556Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:46.705628Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1425" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:01 GMT + - Wed, 18 Oct 2023 16:43:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -246,7 +314,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f655008-773f-4e71-aae4-27d02671febf + - fdc0cc0e-05c9-4719-ae18-837445846366 status: 200 OK code: 200 duration: "" @@ -257,19 +325,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.008556Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:46.705628Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1425" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:01 GMT + - Wed, 18 Oct 2023 16:43:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -279,7 +347,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b24512c8-d7c7-4a5e-86e8-81b688a9ae56 + - 58f01897-a209-4aa4-96fc-0d3f4acf1faa status: 200 OK code: 200 duration: "" @@ -290,19 +358,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2588" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -312,7 +380,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 109a275f-34a4-4db0-9675-2c982beb4e40 + - d0fb835a-4db7-4ba7-8c28-157b5a2759a7 status: 200 OK code: 200 duration: "" @@ -323,19 +391,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.008556Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:46.705628Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1425" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -345,7 +413,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad22a59b-75dc-4080-8b42-d045accc24c4 + - 0b574c99-468d-4da1-b995-fa6fb75f669b status: 200 OK code: 200 duration: "" @@ -356,19 +424,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.008556Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1425" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -378,7 +446,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0819127-a23d-4180-b870-d84cf6f87761 + - 11ed420f-1947-4fb2-addb-1c1ef677370b status: 200 OK code: 200 duration: "" @@ -389,19 +457,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:46.705628Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "2588" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -411,7 +479,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74cc6266-40f1-4fca-87a0-2ff3cac9cbb2 + - b138f0f8-5c84-4b30-bb58-d5d3fa7eea00 status: 200 OK code: 200 duration: "" @@ -422,19 +490,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.008556Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1425" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -444,7 +512,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 141dcb3b-e491-46d5-9ad5-e2172e7a443a + - 1d4586a0-488c-40ef-9ada-00bfc0974cdc status: 200 OK code: 200 duration: "" @@ -455,19 +523,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2588" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -477,7 +545,73 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc4467c1-33d4-4f6a-91d0-acca5f36bd9c + - d799c3ee-86af-4a35-94be-785bc878b3df + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:46.705628Z","upgrade_available":true,"version":"1.27.6"}' + headers: + Content-Length: + - "1509" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a14bbee7-c1d3-41c8-943c-503d024f32f9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2630" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 36539d1f-5cd9-442a-af26-8076ae2e9a9f status: 200 OK code: 200 duration: "" @@ -492,11 +626,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -504,7 +638,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -514,7 +648,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 765d0037-bbc7-41bd-88c4-f2ad66a3bd9d + - 895c6885-2f6b-4d80-96cc-7efacf332b74 status: 200 OK code: 200 duration: "" @@ -525,19 +659,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:15:59.008556Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:46.705628Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1425" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -547,7 +681,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 088f7e09-6cc2-45c0-a23e-a8298a8329e1 + - 1a1b2973-a84c-4191-ae82-03a9fc26f783 status: 200 OK code: 200 duration: "" @@ -560,19 +694,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: PATCH response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:02.932803969Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:52.359687661Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1422" + - "1506" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -582,7 +716,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae5e3420-b365-4f39-a13d-c2ff95a80729 + - 99508190-0bea-47e5-8562-a0db2d9c9b79 status: 200 OK code: 200 duration: "" @@ -593,19 +727,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:02.932804Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:52.359688Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1419" + - "1503" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -615,7 +749,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45f05d1e-8bb1-4e93-ad5f-27d7dbd70cd9 + - 57a5bc6b-8ab3-4efa-80d8-6657cbd8696f status: 200 OK code: 200 duration: "" @@ -626,19 +760,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:04.103639Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:53.481015Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1424" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:08 GMT + - Wed, 18 Oct 2023 16:43:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -648,7 +782,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b580da6c-deff-45ed-b02b-80a9f645d0aa + - db5d1bc3-debb-4101-a156-b981e786878a status: 200 OK code: 200 duration: "" @@ -659,19 +793,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:04.103639Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:53.481015Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1424" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:08 GMT + - Wed, 18 Oct 2023 16:43:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -681,7 +815,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 792f5d7d-7b31-40bf-a1f6-8eefd2c12c30 + - 68735868-8935-4075-aca6-b9c5ed2fa687 status: 200 OK code: 200 duration: "" @@ -692,19 +826,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2588" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:08 GMT + - Wed, 18 Oct 2023 16:43:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -714,7 +848,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9be45c0a-f221-48b6-b91e-4519f1354c14 + - 98374729-2066-4732-9a75-7e2ac8901898 status: 200 OK code: 200 duration: "" @@ -725,19 +859,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:04.103639Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:53.481015Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1424" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:09 GMT + - Wed, 18 Oct 2023 16:43:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -747,7 +881,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc313e33-65e1-493a-a727-d196fc0571e6 + - ea3e2f80-a0ed-43ac-89c2-167db518a99c status: 200 OK code: 200 duration: "" @@ -758,19 +892,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:04.103639Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1424" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:09 GMT + - Wed, 18 Oct 2023 16:43:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -780,7 +914,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20b069a7-45e5-4304-901b-81de9ca131a9 + - 250c63ac-8cc6-463f-a8c1-3b408a40407f status: 200 OK code: 200 duration: "" @@ -791,19 +925,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:53.481015Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "2588" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:09 GMT + - Wed, 18 Oct 2023 16:43:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -813,7 +947,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17053be9-7d1a-4d9b-bfa7-b46548cf8c5d + - b12adb30-d097-4d16-83fc-63e088691180 status: 200 OK code: 200 duration: "" @@ -824,19 +958,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:04.103639Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1424" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:10 GMT + - Wed, 18 Oct 2023 16:43:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -846,7 +980,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb523c2b-7967-4425-98f5-b8b2c27d9fdc + - 82b80e94-a683-40f7-96b6-5cfec414403f status: 200 OK code: 200 duration: "" @@ -857,19 +991,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2588" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:10 GMT + - Wed, 18 Oct 2023 16:43:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -879,7 +1013,73 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0972349a-ab37-4bdf-a701-1ce63f7a2cdf + - f5609f4f-a0c9-479c-ae3d-7c151f06df75 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:53.481015Z","upgrade_available":true,"version":"1.27.6"}' + headers: + Content-Length: + - "1508" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5a2e419-3c9c-4bfa-8ed0-ee403e6a5a20 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2630" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 182fe764-81d8-4cce-869b-18c275c5b135 status: 200 OK code: 200 duration: "" @@ -894,11 +1094,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -906,7 +1106,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:10 GMT + - Wed, 18 Oct 2023 16:43:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -916,7 +1116,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 953632e4-85e4-4c98-bb5b-0049fc01fac0 + - 30e9237f-2ccb-431c-8af7-f4c1bb7ac1a4 status: 200 OK code: 200 duration: "" @@ -927,19 +1127,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:04.103639Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:53.481015Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1424" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:11 GMT + - Wed, 18 Oct 2023 16:43:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -949,7 +1149,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1335c787-12ba-435a-b350-c5ace70cbf0e + - 66b18a48-d931-4e5c-9e06-97abd0b78ed9 status: 200 OK code: 200 duration: "" @@ -962,19 +1162,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: PATCH response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:11.525876146Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:59.941922296Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1422" + - "1506" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:11 GMT + - Wed, 18 Oct 2023 16:43:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -984,7 +1184,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53b226fc-3335-48e7-b92c-02478f4c4813 + - b8c4cf96-010e-4432-98db-87a523d17f93 status: 200 OK code: 200 duration: "" @@ -995,19 +1195,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:11.525876Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:43:59.941922Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1419" + - "1503" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:12 GMT + - Wed, 18 Oct 2023 16:44:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1017,7 +1217,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13d4a2ae-4e05-46ec-9610-03e4af5e2aed + - 324f0076-38c6-4b12-a492-9fcb547bfda5 status: 200 OK code: 200 duration: "" @@ -1028,19 +1228,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:14.221191Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:01.062120Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1424" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:17 GMT + - Wed, 18 Oct 2023 16:44:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1050,12 +1250,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1113a94-419e-4a0b-b3e6-82e57b59ed5f + - f69f12ad-60ee-479e-a451-fc61afd99e0e status: 200 OK code: 200 duration: "" - request: - body: '{"version":"1.28.0","upgrade_pools":true}' + body: '{"version":"1.28.2","upgrade_pools":true}' form: {} headers: Content-Type: @@ -1063,19 +1263,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/upgrade + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/upgrade method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:17.496393595Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:05.096327255Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1507" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:05 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f69691a-c259-40ac-983e-bde8b12ef725 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:05.096327Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1423" + - "1504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:17 GMT + - Wed, 18 Oct 2023 16:44:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1085,7 +1318,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b2c876a-8df4-431a-9a0e-5910f8a3635e + - fdc3fdf7-1dbe-4659-9bc2-d292be052192 status: 200 OK code: 200 duration: "" @@ -1096,19 +1329,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:17.496394Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:06.207284Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1420" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:17 GMT + - Wed, 18 Oct 2023 16:44:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1118,7 +1351,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bc43638-1c93-4b99-bc47-de58fef3b344 + - 10a4d3bc-9593-4a17-907d-c9e8859531b3 status: 200 OK code: 200 duration: "" @@ -1129,19 +1362,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:21.341871Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:06.207284Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:23 GMT + - Wed, 18 Oct 2023 16:44:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1151,7 +1384,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c5e8ec0-46ca-4b3a-9d41-ba7d158a5faf + - 17c3e664-4826-4e21-9731-8a19dd3a3c20 status: 200 OK code: 200 duration: "" @@ -1162,19 +1395,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:21.341871Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1425" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:23 GMT + - Wed, 18 Oct 2023 16:44:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1184,7 +1417,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63604f23-baf7-4107-8f9f-742b461aad4a + - c338f40f-f6dc-483b-88cd-3c50d9b04d03 status: 200 OK code: 200 duration: "" @@ -1195,19 +1428,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:06.207284Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2588" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:23 GMT + - Wed, 18 Oct 2023 16:44:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1217,7 +1450,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 908634b0-7a80-4789-a50f-6d1f1bc5b705 + - e6ef67b0-0a2b-434d-aca1-ca08b53f371a status: 200 OK code: 200 duration: "" @@ -1228,19 +1461,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:21.341871Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1425" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:23 GMT + - Wed, 18 Oct 2023 16:44:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1250,7 +1483,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60a91e4a-e958-4415-9cbf-b04150dc9a8f + - 3063cba1-bf4f-4a43-821c-7949cb7e8b3f status: 200 OK code: 200 duration: "" @@ -1261,19 +1494,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:21.341871Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:06.207284Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:23 GMT + - Wed, 18 Oct 2023 16:44:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1283,7 +1516,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c624557c-2aa2-4dca-9772-c87eb23a0122 + - 4ad81d50-c6c0-42d2-b4bb-c7680667ea03 status: 200 OK code: 200 duration: "" @@ -1294,19 +1527,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2588" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:23 GMT + - Wed, 18 Oct 2023 16:44:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1316,7 +1549,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f4b3acb-c011-4e61-b339-4a7c369d2420 + - dd197cd4-3116-4d73-999e-1047751b214f status: 200 OK code: 200 duration: "" @@ -1327,19 +1560,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:21.341871Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1425" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:23 GMT + - Wed, 18 Oct 2023 16:44:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1349,7 +1582,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dc1b7a7-3ec4-4fae-aaa6-4b1a8bf0c1ee + - c7fe90f0-920e-4047-bbae-40b035f45d34 status: 200 OK code: 200 duration: "" @@ -1360,19 +1593,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:06.207284Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2588" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:23 GMT + - Wed, 18 Oct 2023 16:44:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1382,7 +1615,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23b9706b-8160-4bde-9df0-cf4d2a17a082 + - 60439596-2f43-4d71-af77-d6f23ba9f9c3 status: 200 OK code: 200 duration: "" @@ -1393,19 +1626,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:21.341871Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1425" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:24 GMT + - Wed, 18 Oct 2023 16:44:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1415,7 +1648,40 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 357121ef-7f09-4644-8805-8ce4fa34be51 + - 2acbd9f4-3865-4518-87b9-59dfcb60c719 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:06.207284Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1509" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:11 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c3135278-2b4c-4f5c-adfa-da92a1f919a9 status: 200 OK code: 200 duration: "" @@ -1428,19 +1694,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: PATCH response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:24.113257646Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:11.984657595Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1424" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:24 GMT + - Wed, 18 Oct 2023 16:44:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1450,7 +1716,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e489ea9d-3d4c-459c-8c6e-fab971ac1f92 + - c1e05540-4b1e-47f0-ae61-2aea7c751c39 status: 200 OK code: 200 duration: "" @@ -1461,19 +1727,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:24.113258Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:11.984658Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1421" + - "1505" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:24 GMT + - Wed, 18 Oct 2023 16:44:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1483,7 +1749,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caeb0133-8b2c-4900-accd-8999ee1f1509 + - 3f41d352-f919-4b0d-8ca9-65fa3242d83f status: 200 OK code: 200 duration: "" @@ -1494,19 +1760,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:25.265417Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:13.133374Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1426" + - "1510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:29 GMT + - Wed, 18 Oct 2023 16:44:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1516,7 +1782,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d2aa1d7-cc28-4e32-af64-f47e86d91158 + - aded49db-51b8-4eed-a529-8d2ec331dbf6 status: 200 OK code: 200 duration: "" @@ -1527,19 +1793,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:25.265417Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:13.133374Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1426" + - "1510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:29 GMT + - Wed, 18 Oct 2023 16:44:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1549,7 +1815,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b816478b-d2eb-44b5-936a-c78615f2c39d + - 4295e5f2-ca7d-4114-8a7d-1ffa78fe6bf0 status: 200 OK code: 200 duration: "" @@ -1560,19 +1826,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2588" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:29 GMT + - Wed, 18 Oct 2023 16:44:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1582,7 +1848,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b451e71-1732-4bb1-bfbf-39426d857f38 + - 50f7e129-0910-454a-88f6-0dcc925d35a8 status: 200 OK code: 200 duration: "" @@ -1593,19 +1859,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:25.265417Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:13.133374Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1426" + - "1510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:29 GMT + - Wed, 18 Oct 2023 16:44:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1615,7 +1881,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd1575a7-b62e-4e08-9c20-8c62b6229fe7 + - 9bdd924d-7b4f-4e83-929c-870a6415ea7b status: 200 OK code: 200 duration: "" @@ -1626,19 +1892,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:25.265417Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1426" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:29 GMT + - Wed, 18 Oct 2023 16:44:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1648,7 +1914,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 624f9c08-6933-4acd-a43c-9accd2b44d72 + - a37ce27f-4383-4e3e-a585-4df4ea88ecbc status: 200 OK code: 200 duration: "" @@ -1659,19 +1925,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:13.133374Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2588" + - "1510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:29 GMT + - Wed, 18 Oct 2023 16:44:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1681,7 +1947,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a9a2d9f-a614-4973-881b-f209efb45cc4 + - 37e279d3-d47a-46c9-bf4d-98000c3f2287 status: 200 OK code: 200 duration: "" @@ -1692,19 +1958,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:25.265417Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1426" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:29 GMT + - Wed, 18 Oct 2023 16:44:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1714,7 +1980,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf8c5af3-0676-4982-a331-1e447031180f + - 5c059375-4234-419f-a81f-f4507f668bde status: 200 OK code: 200 duration: "" @@ -1725,19 +1991,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2588" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:29 GMT + - Wed, 18 Oct 2023 16:44:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1747,7 +2013,73 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f04b4e54-3ebf-4b5d-b707-067d02041d22 + - edd945f8-90a2-43e4-8df0-4211090226c6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:13.133374Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1510" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ccc5dfd-c262-467e-b3db-be60670e1775 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2630" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 74379800-5899-4ccd-bdaf-79318b9de1e3 status: 200 OK code: 200 duration: "" @@ -1762,11 +2094,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -1774,7 +2106,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:30 GMT + - Wed, 18 Oct 2023 16:44:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1784,7 +2116,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 614c0d21-448c-4ba7-9672-7b9de3a8ee88 + - a387ae9b-227d-4470-a3df-66aae2261112 status: 200 OK code: 200 duration: "" @@ -1795,19 +2127,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:25.265417Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:13.133374Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1426" + - "1510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:30 GMT + - Wed, 18 Oct 2023 16:44:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1817,7 +2149,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ed07d95-5c98-461a-9155-214b253cc65d + - 91890872-891e-4424-8139-f15800276e37 status: 200 OK code: 200 duration: "" @@ -1830,19 +2162,85 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: PATCH response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:30.245036Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:18.863202092Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c5b125ad-fd0e-42e0-ace1-900bfca932c5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:18.863202Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1508" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ab7185dc-1b0c-4cf8-b181-dc73378a6fca + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:20.019116Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1424" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:30 GMT + - Wed, 18 Oct 2023 16:44:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1852,7 +2250,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fbcf69d-3051-4c9a-96d4-db6f2cd37e92 + - 96b2f1f4-2e8c-425d-a8ff-e28f0e6daac3 status: 200 OK code: 200 duration: "" @@ -1863,19 +2261,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:30.245036Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:20.019116Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1424" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:30 GMT + - Wed, 18 Oct 2023 16:44:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1885,7 +2283,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f419321b-5bf5-4198-abe9-421c5449baa7 + - 2a60c314-dc2a-4940-b61c-961079f55a03 status: 200 OK code: 200 duration: "" @@ -1896,19 +2294,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:31.401773Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1429" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:35 GMT + - Wed, 18 Oct 2023 16:44:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1918,7 +2316,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61df6781-9e9e-4599-bc24-42215c3cbbc4 + - c00565c6-5100-4978-bec6-f7cd775fe291 status: 200 OK code: 200 duration: "" @@ -1929,19 +2327,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:31.401773Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:20.019116Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1429" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:35 GMT + - Wed, 18 Oct 2023 16:44:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1951,7 +2349,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 795d9fe2-4970-4ab2-addc-006303361fdd + - 47aab527-ee6e-4409-9cd6-246aafc84ee9 status: 200 OK code: 200 duration: "" @@ -1962,19 +2360,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2588" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:35 GMT + - Wed, 18 Oct 2023 16:44:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1984,7 +2382,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f262718-8857-4018-bc12-2af18888fe1d + - ce2c0696-873d-4446-af3d-b7289c273929 status: 200 OK code: 200 duration: "" @@ -1995,19 +2393,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:31.401773Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:20.019116Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1429" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:35 GMT + - Wed, 18 Oct 2023 16:44:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2017,7 +2415,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 303e1023-e3a2-4f57-b0d0-34f45079ca24 + - fe15d93f-b112-493f-83f8-5566b8a2121c status: 200 OK code: 200 duration: "" @@ -2028,19 +2426,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:31.401773Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1429" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:35 GMT + - Wed, 18 Oct 2023 16:44:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2050,7 +2448,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea2dc525-1d9d-4239-9559-6afc26215a6c + - f8f764b8-eba1-4943-85b8-edbfb6190879 status: 200 OK code: 200 duration: "" @@ -2061,19 +2459,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2588" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:35 GMT + - Wed, 18 Oct 2023 16:44:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2083,7 +2481,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac4363d0-a191-46fc-b009-6bd98459afae + - 6fed7a06-a80d-4191-908c-269048505b04 status: 200 OK code: 200 duration: "" @@ -2094,19 +2492,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:31.401773Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"tuesday","start_hour":3}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:20.019116Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1429" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:36 GMT + - Wed, 18 Oct 2023 16:44:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2116,7 +2514,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f69e59ae-aa75-4ce5-bec4-b8bb3bbc7c10 + - 16f8e91c-39d4-4340-b48c-56fae1a59353 status: 200 OK code: 200 duration: "" @@ -2127,19 +2525,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2588" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:36 GMT + - Wed, 18 Oct 2023 16:44:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2149,7 +2547,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97a780dd-5d8d-4c24-9930-e1670b1447b5 + - 41d2b1a4-7932-4904-a45c-46e0d14b2ce3 status: 200 OK code: 200 duration: "" @@ -2164,11 +2562,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -2176,7 +2574,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:36 GMT + - Wed, 18 Oct 2023 16:44:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2186,7 +2584,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0241ddf7-720b-45bd-8a42-d6c86c07a960 + - 9f240f47-eb90-4aea-881f-784605c915ba status: 200 OK code: 200 duration: "" @@ -2199,19 +2597,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: PATCH response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:36.308591856Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:25.785593802Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1423" + - "1507" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:36 GMT + - Wed, 18 Oct 2023 16:44:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2221,7 +2619,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3649220-91f5-4c35-8bf8-8106a2e2fd1a + - 45804521-6077-4b53-82e7-66a871bfb2f7 status: 200 OK code: 200 duration: "" @@ -2232,19 +2630,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:36.308592Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:25.785594Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1420" + - "1504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:36 GMT + - Wed, 18 Oct 2023 16:44:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2254,7 +2652,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 866b7059-e71a-4f04-90a6-deb9e0a75542 + - 00ba6640-0bc3-47f2-a485-e350f1f2cc9b status: 200 OK code: 200 duration: "" @@ -2265,19 +2663,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:37.424769Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:26.906989Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:41 GMT + - Wed, 18 Oct 2023 16:44:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2287,7 +2685,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f89b7b8d-692d-40ef-b423-1620eb38b049 + - ffe44dd7-a122-49fc-b557-7d5461966434 status: 200 OK code: 200 duration: "" @@ -2298,19 +2696,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:37.424769Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:26.906989Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:41 GMT + - Wed, 18 Oct 2023 16:44:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2320,7 +2718,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 726ce50d-6fd1-4911-929d-c1c8dc5193f1 + - 7b47f0ca-2210-4c3e-93b2-6fcedfb75903 status: 200 OK code: 200 duration: "" @@ -2331,19 +2729,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2588" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:41 GMT + - Wed, 18 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2353,7 +2751,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c96d49d-2357-44fe-8d53-c3d769ba0cbb + - 0ac34cbb-2fa8-49bf-b20c-5ce578c809e1 status: 200 OK code: 200 duration: "" @@ -2364,19 +2762,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:37.424769Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:26.906989Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:41 GMT + - Wed, 18 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2386,7 +2784,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dec2e74-f652-440e-848a-17e6fc65785a + - 3e755451-3896-425d-871e-92c4fd25805b status: 200 OK code: 200 duration: "" @@ -2397,19 +2795,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:37.424769Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:43:44.258914Z","dhcp_enabled":true,"id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","name":"test-auto-upgrade","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:44.258914Z","id":"4f19792d-685a-4cf1-bd52-1cb3823f144b","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:43:44.258914Z"},{"created_at":"2023-10-18T16:43:44.258914Z","id":"51e3553d-0372-4af8-a40c-83dc7752e070","subnet":"fd63:256c:45f7:aefc::/64","updated_at":"2023-10-18T16:43:44.258914Z"}],"tags":[],"updated_at":"2023-10-18T16:43:44.258914Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1425" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:41 GMT + - Wed, 18 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2419,7 +2817,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 179edcb3-042a-41af-acea-8524f26b665b + - 4abd95b9-9b53-4d0f-822c-d59b802373f4 status: 200 OK code: 200 duration: "" @@ -2430,19 +2828,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImRlZmF1bHQtcG9vbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSFpIQ2xCU1FXVm5lRFV3Y0dOemRHRkpXbGRsUTBKa1dXdGpiRlI0VUd0NVRqaFdXbWhpZDBKb1lXOVdSRFkxTVN0MVQySm9iRWhWYUhveE5WUlZaRU5RWldzS1NqUmFOVUZMUm5sSVZXNTNaWEl5VVdrNFZHazFOMmhpWXk5T1pWcG5iQ3RsY1ZwbloyWkliMnd2WkhWNGRreGhTRU40YWtweVZWRmFlRXB4TDJKTVVRcERja3htWTJ0WWMwcE5XRmxJWkdselUyVnJWbUZLTkVOdGJGcFhOWEl6YW1WS2VXcHpiU3R0VmtObFV6TkZhbTFDV0d0NGNITkZRMk5KTjNaMWVUQlBDa3RFUkdoMlJ6TnBVRnAzUTBKcVZFa3dVVk5GTTNOc1pqaDZTWE53ZVVKME1XUTFTRmxIV0hob1NUbExjbkZzT1dSaFpIQm5jVFJ2TDFwNlUxRlVLMGNLZFZGR1FVTXZTMGRvTDFoeFNtWnlUVU5LTVRSTVdHeFRTR3hHVlRRek1HdHBaVUpHZDJRNFdHRkJhVTFRVmpSUlp6aG1hbk5MVEdsdVUyRTFWRE5hUXdwQ1dXWTVWRTFET0RGTGVHVkRhRVpGVTJRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ2VteE5VbVZ2TWtsSldtMVNOa3d6TjNkdFZ6bE9Wak5UZUhCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1FsSmFLMWRPVlRObmFpOXJSMlpoY1VOU1dFcFdlR0ZMVkc5WWJrVmlhRkZDZFhoRVdqUnRiRlJIUVRoMmNUTnplQXB6V2xSeksxQTFXREpYVDBOUGFEQXJOMFJNVUhGYVptUlViMDQ1VUVkTU9GUnFVRkZsYTFndmNscFlORVp4WlVVMWVHZDFkRlE0UzBaVU1pdHJMekYwQ2xaaldGTkJjWEJ0U214alJteEdWME5uUlhkUWNuQnZhMFZDZUZWdlFWZzFNRmRxV1RsUVIyaHhXbEZOY214cU5GTjRaM2RNUVROUlZYVlJhbXRLVURBS1ZESm1SamRRV1RaVmVpdHNPRkY0ZG5Od1VERnRLM3B0WVhCSlNrVnJla2hrUzNkd016UTJOelU1TkdOT2MzbHhTbGcwTjBrNFMwbHdTRkF6YWtkWmVRcHhlRFJtTkcxMGVVWk9ablZhVFV0TEwyWnNaSFZxVFcxekwxRTNhMUY0TkRSVWJrRnZaR1pSY0hCM2RqbENNa3d4Y0dWclJsWXJUMjgyUW5oYWFHWllDblJUYW5ReFNHeHljazRyVlZjMWJXaFFWVTR6TlhsamIydHRkbVJGY1VKelJuaDJSd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNzllM2ZkYzEtYTY5YS00NDdjLTgwYTEtOTI4MjAwMWIwNDc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGRlZmF1bHQtcG9vbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiZGVmYXVsdC1wb29sIgogICAgdXNlcjogZGVmYXVsdC1wb29sLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AZGVmYXVsdC1wb29sCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogZGVmYXVsdC1wb29sLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBjMVVzUHBtTW5nc1JOTWhrN2c5UUZuQjJhckFWQ0ZPMzJiUVJ5S0ZZZThlcU9vNWpCVFhINlIzVg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:26.906989Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2588" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:41 GMT + - Wed, 18 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2452,7 +2850,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad5f247a-e148-496a-9821-bb20d09d006a + - 17d14ac8-41b4-45cf-b998-5c2f4851ed21 status: 200 OK code: 200 duration: "" @@ -2463,19 +2861,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTk1FNXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMHdUbXh2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRqRnJDa2RRWW01NVdrRnhUa0p6VUhwU2MwVkZSV012VDNsblRITnFTRGhQVmpWQlVFTTVlV2hOZVZnck5GZzVPVVE0VUVrNU5rRkRiVTF2UWpkWWQzSlpjMUlLWkZCVVNVbDZhM1pqY1hFd2VrTnVXSEp0UjFWelVYUmxaRFlyZURob1owVk1hRlo2VDA1eFUzWktlRXgwYXpRdmNUTXpNMUV6TmxaWlVWWXZjaTkyUlFvdlpub3dURGxSSzJ4a1JISjNMM1kzYlROMk5qVjBNMWRvWW5KNk1tRnBkRmR0TVM5RWF6VllWWGxyTDNOblVGUkVTREF6V0hSUlNUUlZZbWxOYlZoakNpdDRlRlZWU2xKUFJuRnpXRTE2VUd0clducFFVMngyZUU5R1ZEWklLMlF5ZW5sTE5WcEdZblJyVWxKS1VuTkdkWEpWWTBNek5qWklkRFpXZEhOU1VVVUtSRWhsTkhNMU1YVkhSRmxaUzJGcVpVbFJSa3ByVTJGU1dIQkxiMHhFZUc5WlNWb3plRFZyYUROcloxQmFiRnBUY0ZodVVHdG9Za3hCZEZRcmVHdElOd296YjI0dmEwOUdkM1ZUUm1KNFdUUTFiRkpqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpCTkc1V1NsUmFVa3hIYjNWNVVpOVVWVkpwU25kUFRUZE5NMk5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCT0d4cWJXa3dTMlpUYlRWWldtbHJablJQVG1kNlEwOTRTMVpGT0VSUWVEUllUMEkyT1hFelowODVVek52VWsxVGNncGhVVzlLWTJSMlFXMHJOVzlrVmtwRU4xWnFXamhCVVUxV2FESndOMFVyY1VwNFRYZFJNVkpUVEZWek0xRmtibWRMZDBka1QzQmxhM2cwYVVoMlptdElDbk5qUkhRcmR5dFdjMjk1T1hoMk9DOVpWMFoyTTJwT2FHbzBibU16U0RSMFpVVnVka1ExTmtzemMydG1TRTR2ZEVaQlduUllXRTFrVjNoelJqaFZMemtLTDJaRU5GSmpZV2RRV0VKeWVsSkxjRmxaUW00clJqUmhTMGR4UjNSRWMyOTFWa0VyYzJ0VE1tNUlSV2R2UjJjelQweGpRVm8wYlc0elFqUlFOVWxuYUFwWFlrOWFRMHN6ZVZwaWMxbGFjMUJpWkd3NVpXbHhSRUpvUzBZNFpVcHJXRm96VWxWVFRWVlpkakJHVDBaMmEyOUJjamx3Ynk5dFMwUm9VRU15WVdWeUNrcHFMek5wY1Rrek1HbFhaMEZ0TTJRNVpteFpZMkk0WjI1T2JURnBaMU5UZEhOMGVnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGI4MTdlZC1lZTI2LTRmZDYtYmI2Zi0yOTI1ZjUwOTgxMjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0by11cGdyYWRlIgogICAgdXNlcjogdGVzdC1hdXRvLXVwZ3JhZGUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LWF1dG8tdXBncmFkZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB1VloxemV4elFPaG1TRjRmOURZU01pbUZsWjZQdDlBM3hrSkFiQlNXVlNwcElZTTR2S2tUY0NzMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2630" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 614ee395-baf3-4d3c-b17e-34c83b3551c2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125?with_additional_resources=true method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:42.087583906Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:32.155220510Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1423" + - "1507" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:42 GMT + - Wed, 18 Oct 2023 16:44:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2485,7 +2916,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92ebdfee-2587-4f4e-a7e4-33c6e04f516d + - c378f2d5-ef6f-45de-a2c9-430f7ecf3b7e status: 200 OK code: 200 duration: "" @@ -2496,19 +2927,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://79e3fdc1-a69a-447c-80a1-9282001b0479.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:15:56.753099Z","created_at":"2023-09-01T16:15:56.753099Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.79e3fdc1-a69a-447c-80a1-9282001b0479.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"79e3fdc1-a69a-447c-80a1-9282001b0479","ingress":"none","name":"default-pool","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-09-01T16:16:42.087584Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:32.155221Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1420" + - "1504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:42 GMT + - Wed, 18 Oct 2023 16:44:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2518,7 +2949,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 053d0fbd-d6e6-4beb-8ea8-26b8ad47a12a + - f5838a46-c2cf-461b-ad35-17df8c18dc30 status: 200 OK code: 200 duration: "" @@ -2529,10 +2960,43 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"79e3fdc1-a69a-447c-80a1-9282001b0479","type":"not_found"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a4b817ed-ee26-4fd6-bb6f-2925f5098125.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:45.195710Z","created_at":"2023-10-18T16:43:45.195710Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a4b817ed-ee26-4fd6-bb6f-2925f5098125.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","ingress":"none","name":"test-auto-upgrade","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"type":"kapsule","updated_at":"2023-10-18T16:44:32.155221Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1504" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 268230e7-9d58-4502-998d-39b105c1f7a4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 + method: GET + response: + body: '{"message":"resource is not found","resource":"cluster","resource_id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","type":"not_found"}' headers: Content-Length: - "128" @@ -2541,7 +3005,40 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:47 GMT + - Wed, 18 Oct 2023 16:44:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7a17ad1-0f57-4ff0-8979-01d204275c49 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9695b5c8-f87e-4172-805f-afbb4cb27d8b + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"9695b5c8-f87e-4172-805f-afbb4cb27d8b","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2551,7 +3048,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d9c7685-bbec-4f55-93a4-ffdf44f40934 + - bf3975b9-5888-4170-b898-0a60bba76c2b status: 404 Not Found code: 404 duration: "" @@ -2562,10 +3059,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/79e3fdc1-a69a-447c-80a1-9282001b0479 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4b817ed-ee26-4fd6-bb6f-2925f5098125 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"79e3fdc1-a69a-447c-80a1-9282001b0479","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"a4b817ed-ee26-4fd6-bb6f-2925f5098125","type":"not_found"}' headers: Content-Length: - "128" @@ -2574,7 +3071,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:47 GMT + - Wed, 18 Oct 2023 16:44:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2584,7 +3081,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f125e5e6-7bf7-4195-9a15-52bfba966871 + - 16730764-9c60-461a-abe5-d387728b63f6 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-autoscaling.cassette.yaml b/scaleway/testdata/k8s-cluster-autoscaling.cassette.yaml index 9650e0fea9..c206c11036 100644 --- a/scaleway/testdata/k8s-cluster-autoscaling.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-autoscaling.cassette.yaml @@ -12,11 +12,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,80 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41bb626b-51b3-4c2d-9116-36ab57ba9541 + - 1c797c36-7f73-4ef3-838e-f2d26d7f5f3d status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"autoscaler-01","description":"","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"version":"1.28.0","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-autoscaler","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks + method: POST + response: + body: '{"created_at":"2023-10-18T16:44:00.098797Z","dhcp_enabled":true,"id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-10-18T16:44:00.098797Z","id":"9da3a37f-0bdc-47e2-bd67-e6c5dd55040c","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:44:00.098797Z"},{"created_at":"2023-10-18T16:44:00.098797Z","id":"71643564-6514-4b7d-b4f5-512d55efccdc","subnet":"fd68:d440:21c4:61e3::/64","updated_at":"2023-10-18T16:44:00.098797Z"}],"tags":[],"updated_at":"2023-10-18T16:44:00.098797Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}' + headers: + Content-Length: + - "715" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6b19a3db-f6b6-47f3-981d-2a31657bcee9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/66609b41-6f0b-4e20-b1b1-adcebf968e47 + method: GET + response: + body: '{"created_at":"2023-10-18T16:44:00.098797Z","dhcp_enabled":true,"id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-10-18T16:44:00.098797Z","id":"9da3a37f-0bdc-47e2-bd67-e6c5dd55040c","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:44:00.098797Z"},{"created_at":"2023-10-18T16:44:00.098797Z","id":"71643564-6514-4b7d-b4f5-512d55efccdc","subnet":"fd68:d440:21c4:61e3::/64","updated_at":"2023-10-18T16:44:00.098797Z"}],"tags":[],"updated_at":"2023-10-18T16:44:00.098797Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}' + headers: + Content-Length: + - "715" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 93bb7d09-7983-4ad3-b1c9-a9af1195f0ae + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-autoscaler-01","description":"","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47"}' form: {} headers: Content-Type: @@ -50,16 +118,16 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912611860Z","created_at":"2023-09-01T16:21:13.912611860Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:13.923348064Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778302Z","created_at":"2023-10-18T16:44:01.333778302Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:01.350689124Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1441" + - "1525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:14 GMT + - Wed, 18 Oct 2023 16:44:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +137,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbf329cc-181a-44c1-b132-a06d6016157e + - a5df0fee-1e6f-41c9-b7ce-8e036744cfd8 status: 200 OK code: 200 duration: "" @@ -80,19 +148,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:13.923348Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:01.350689Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1432" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:14 GMT + - Wed, 18 Oct 2023 16:44:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,7 +170,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 934b1a33-5f60-4281-9156-92a6d9efd709 + - afcc792f-ca32-4db0-b2dc-df1de9c2ca6a status: 200 OK code: 200 duration: "" @@ -113,19 +181,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:15.464593Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:03.047383Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:19 GMT + - Wed, 18 Oct 2023 16:44:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -135,7 +203,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c00bfa1-f28e-4e73-a0b2-838a8eff5e18 + - a99ce70f-81be-4337-b80e-ba072e54baf3 status: 200 OK code: 200 duration: "" @@ -146,19 +214,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:15.464593Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:03.047383Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:19 GMT + - Wed, 18 Oct 2023 16:44:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16e137aa-44e5-48d7-b718-1142cbcddd98 + - 20365bae-b484-425b-9bd7-06e4ad668901 status: 200 OK code: 200 duration: "" @@ -179,19 +247,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImF1dG9zY2FsZXItMDEiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGZUU1V2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtWNFRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNKVkNtUmlOVmt6UzJOa1RYVjBjVzByYUV4TFRGbzRWR1ZrY2twNmJtdFZSR0ZDT1V0M1FtTXlVbGxLY1ZGRll6aFZRbEpMYTJ3eE1sRmlVSHBtUlZaSWVra0tTREZ3TmxkemIxcHpjMHRzTXpGV2VVWnNZMEpPT0d4aWJXWXJja1F3VVRVclIxcDFOQzlOV0RnMWRtMWtZMmhpTDFFNGRrVldla0Z5WTNadVdtODJhZ3BPTkV4TFlsTXliV3BGZURZdlpFMU5kVTh3VW0xUlQxSmljR2gzV2pJclNFNVFSbVpyVGs1RFFqaElOak5NT0RGdGVsWTNRamxTYmxSYWVtb3JXWGQyQ2s5eFNGcFhVRU5rTW5SbFIzWlFieTgxVWxJd2JuSnBVMFp1U1V4SlZESnVaVGRYVG01SVFrNXBiMnRYY0ZCVFl6azFVMWt2V0d3eGMwdzNhazVEZGtVS1V6Vk5ZMmxJYnk4eWNWVlZla3d5YVV4SE1Dc3JUWFJKTWs5VlJXbzJRbkJ2V0ZoNVozZHpRWEl6UnpGaVpVOXRLMHN6YWtGbWVGSkdLM0UxY1ZwRGNncEZNbUZOVFZsbmJWTnBTVEpYZDFKQkwxSkZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9aekowWW5CdE1UTm5SVzFOT1hkeWIyTTBSemhuUkcxbmQxaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJXRzQ1ZUU5UGVITjRkME0xZUdSUVJHZHJURlJoWTI1RmQyaGpWbVJWTjFKbGNucERVR1EzSzI5S1pIVkVaVVZWVlFwSVZtUkdSa0phVFZodVMxUk1LMFpYTTB4eVdGVm9jR2hVWjA1alZrOW1kbVkzT0ZCd1ExY3lUMEpCYlhSalRVUXlRMkZQUzJOaFYwRjRUR3hVTldOVENuRnNXalJGYTI1SlRYaFlZakIxT1ROMVVURTRSalZoZVRGMWF6UjNVRWRJV0dSYVRtWlRiemQ2THpkc1ZtUmpLMVlyV1dNMmFtSk9XSGxuY21ONVNIY0tOemRqTlRsbGEwUk1VSGQ1YkdKT1JERnZRa1pMTW1JemREQm5OVFU1WkZKc1NqZG1hRWw2VEdvclQxRlNWamRoT1ZrcmVuSTFTSGs1YWt0cVNsY3plUXBuV0ZoRU1XZ3dlRE4xYTFkdk5HaGpkbU5FTjBrMFZEaHFVMlZaWnpSbWVVUkpabHB5ZFV0dlVuWlVWVzUzYUVsc01XOU5jRWx6Y0dKYWVGRnBVR1J1Q21OUVUwRXZkWE5uUTB4QmRGVmpUV054Wm1kM1ltNXZjMk5rWW1odmEwSk1TRkI1WndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE2NDI1M2EzLThiZjQtNDQ5MS1hMWM3LWJjMjA1MzU0ZmVmZi5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBhdXRvc2NhbGVyLTAxCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJhdXRvc2NhbGVyLTAxIgogICAgdXNlcjogYXV0b3NjYWxlci0wMS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGF1dG9zY2FsZXItMDEKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBhdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAzMHJOd2hYNk9PZW9GdHpZT2V2d0dvaE1sa2MybFo3bkFkMlVsNDhtYWRzMFhNWGpjRHhCb3VWYw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUlJkMDFzYjFoRVZFMTZUVlJCZUU1NlJUSk9SRkYzVFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSE0yQ21WeFR6RmlUMDAyT1dRdlUwMW9NRFJoYzNOeWJIbHZUVmRZTlhFeVJsZFJUbWxMV0RBelNuSkJRamRTTjI0d01uTnBNbGRFVmpGeGVVZGhaMHRsUm5vS1MyaEdObE5rTTNwTWEzZFBTMncyUmlzelNuZzNVR1pPVkd3ck4wSmlkM05KTmpFek5EZzFUbEJwUkRkaFJtSldhR29yT0hjNGVHSm9RM1pHVWxsTGRRcHVhVkJEY1ZJMFQwTjJOazVLUm1SU2MzWk5la3BwZVhveEsySXhRek5RUjNadE0wVm1NQzlXTTFKc1NXTmtSMDB5V2pRMVIxVmtLMVZZY0RaS05IRkxDbFJOVkcxb01tMDJhalJFWkRWdVN6VkdTRzVrU25KTU5GazBWR1lyUjI5WmRXaGlNbWxoYUZGTFZHeEJiMUpvUTBVMFkwRjRObVJpUm5kSWVWVjZTM2tLTmxsRVIzUlBUQzlHZEZreFZISkphbFUyV1ZsamJWbFpOV2RhSzBwcmJEZHdPR1ZMVjI5eWRHdFFVMGRXU0hKTmFtVnRTa3hFZEV0NlQySkhVRzFyT1FwUGIxTktSMHBYZDJWaGJWSmFjbWgwVVc0NFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUE1tcHNLMVp1UjI5YVN6RjZUVmxIYm1GVGVYRjFjSHBXZGl0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1lrWnpRVFV6VjNGMllXUjBUVFJIVDFsWFpsTm9Vbmg1V21sclN6RXZNRlIzVmtSS1JEbExhbkZqT0RCSmRGZFFTUXBLUTB3clpUbDJVMWxIWWtoaVdHRTVWMjFhYjBabVpuZExOMjExWVZoQk1qZHdNazl1WTNadE5VUTNZM1paUXpFcmNXZzFNa2xZY2tkT0swazJkamQ1Q20xWGRHMHpjemNyYUhGQ2JXUkNRVnBMVEdwM1oyUTRSM0E1U0VGeE0yUlljWEJ3VkdKTVdtSkRUV0V5TW5oeE1GTTBRaTk2WXpGNFlrMU5WbG8wYm1nS2RuRTVabXRUT0dwdWJrNW1TWE5pVlRCM0t5c3JSMjlvTDFwUmFtWXpTRkoyVDA5NWNrd3hUV3BxTVROMmRIUkphM0Y2UlhKaWNVdFZRMnRVVHpCTmFBbzFNRWRLU1RaU1NrWmlWVVJEZVZnMlIxZFNVelF6WW5ob1oyZDNhU3RTVVdzNFptaERjMGhPWlZVNWNFaFJWWEZ6VHpNclNqWktXRFJyWVVOT1ZFZG5DalpsTXpFMWMxbzVSRzU2VEZVMFpqVkpNMFJHV0RnNVdrbEtiekpyVDBoeFZ6bDZhZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2ZjODZlYWItODQ0NC00YjdkLWFlNTItZTcxMzI2ZTNlYjAxLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAxIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXaEU5SWVmWUNBSFlDaTY3WUNhOXFVR0swV1lwSzNsQmdUcWFRcVd4MVZuZ3d0NjJPeWNud2h2OQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2596" + - "2638" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:19 GMT + - Wed, 18 Oct 2023 16:44:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,7 +269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02e64247-2fa3-4009-9ba8-79f3634efdde + - edd9c5e4-3b74-4291-8407-079b8d0cbcb6 status: 200 OK code: 200 duration: "" @@ -212,19 +280,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:15.464593Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:03.047383Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:19 GMT + - Wed, 18 Oct 2023 16:44:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,7 +302,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ced0aff-7bd8-4879-b7df-a2bcf87fc3ef + - 9deb84cf-410c-4387-bbb2-718a703c2150 status: 200 OK code: 200 duration: "" @@ -245,19 +313,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/66609b41-6f0b-4e20-b1b1-adcebf968e47 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:15.464593Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:44:00.098797Z","dhcp_enabled":true,"id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-10-18T16:44:00.098797Z","id":"9da3a37f-0bdc-47e2-bd67-e6c5dd55040c","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:44:00.098797Z"},{"created_at":"2023-10-18T16:44:00.098797Z","id":"71643564-6514-4b7d-b4f5-512d55efccdc","subnet":"fd68:d440:21c4:61e3::/64","updated_at":"2023-10-18T16:44:00.098797Z"}],"tags":[],"updated_at":"2023-10-18T16:44:00.098797Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}' headers: Content-Length: - - "1437" + - "715" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:19 GMT + - Wed, 18 Oct 2023 16:44:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -267,7 +335,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1f77679-d5ba-4d97-b9da-6719d619cee7 + - 4c33f3f1-f8f5-4338-9d82-72f5b3b3295a status: 200 OK code: 200 duration: "" @@ -278,19 +346,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImF1dG9zY2FsZXItMDEiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGZUU1V2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtWNFRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNKVkNtUmlOVmt6UzJOa1RYVjBjVzByYUV4TFRGbzRWR1ZrY2twNmJtdFZSR0ZDT1V0M1FtTXlVbGxLY1ZGRll6aFZRbEpMYTJ3eE1sRmlVSHBtUlZaSWVra0tTREZ3TmxkemIxcHpjMHRzTXpGV2VVWnNZMEpPT0d4aWJXWXJja1F3VVRVclIxcDFOQzlOV0RnMWRtMWtZMmhpTDFFNGRrVldla0Z5WTNadVdtODJhZ3BPTkV4TFlsTXliV3BGZURZdlpFMU5kVTh3VW0xUlQxSmljR2gzV2pJclNFNVFSbVpyVGs1RFFqaElOak5NT0RGdGVsWTNRamxTYmxSYWVtb3JXWGQyQ2s5eFNGcFhVRU5rTW5SbFIzWlFieTgxVWxJd2JuSnBVMFp1U1V4SlZESnVaVGRYVG01SVFrNXBiMnRYY0ZCVFl6azFVMWt2V0d3eGMwdzNhazVEZGtVS1V6Vk5ZMmxJYnk4eWNWVlZla3d5YVV4SE1Dc3JUWFJKTWs5VlJXbzJRbkJ2V0ZoNVozZHpRWEl6UnpGaVpVOXRLMHN6YWtGbWVGSkdLM0UxY1ZwRGNncEZNbUZOVFZsbmJWTnBTVEpYZDFKQkwxSkZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9aekowWW5CdE1UTm5SVzFOT1hkeWIyTTBSemhuUkcxbmQxaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJXRzQ1ZUU5UGVITjRkME0xZUdSUVJHZHJURlJoWTI1RmQyaGpWbVJWTjFKbGNucERVR1EzSzI5S1pIVkVaVVZWVlFwSVZtUkdSa0phVFZodVMxUk1LMFpYTTB4eVdGVm9jR2hVWjA1alZrOW1kbVkzT0ZCd1ExY3lUMEpCYlhSalRVUXlRMkZQUzJOaFYwRjRUR3hVTldOVENuRnNXalJGYTI1SlRYaFlZakIxT1ROMVVURTRSalZoZVRGMWF6UjNVRWRJV0dSYVRtWlRiemQ2THpkc1ZtUmpLMVlyV1dNMmFtSk9XSGxuY21ONVNIY0tOemRqTlRsbGEwUk1VSGQ1YkdKT1JERnZRa1pMTW1JemREQm5OVFU1WkZKc1NqZG1hRWw2VEdvclQxRlNWamRoT1ZrcmVuSTFTSGs1YWt0cVNsY3plUXBuV0ZoRU1XZ3dlRE4xYTFkdk5HaGpkbU5FTjBrMFZEaHFVMlZaWnpSbWVVUkpabHB5ZFV0dlVuWlVWVzUzYUVsc01XOU5jRWx6Y0dKYWVGRnBVR1J1Q21OUVUwRXZkWE5uUTB4QmRGVmpUV054Wm1kM1ltNXZjMk5rWW1odmEwSk1TRkI1WndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE2NDI1M2EzLThiZjQtNDQ5MS1hMWM3LWJjMjA1MzU0ZmVmZi5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBhdXRvc2NhbGVyLTAxCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJhdXRvc2NhbGVyLTAxIgogICAgdXNlcjogYXV0b3NjYWxlci0wMS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGF1dG9zY2FsZXItMDEKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBhdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAzMHJOd2hYNk9PZW9GdHpZT2V2d0dvaE1sa2MybFo3bkFkMlVsNDhtYWRzMFhNWGpjRHhCb3VWYw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:03.047383Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2596" + - "1521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:19 GMT + - Wed, 18 Oct 2023 16:44:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +368,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a307082-e3a7-4d13-b004-6c1a8fb16ce5 + - 861135fe-6d76-49f8-8c5f-6124c5873400 status: 200 OK code: 200 duration: "" @@ -311,19 +379,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:15.464593Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUlJkMDFzYjFoRVZFMTZUVlJCZUU1NlJUSk9SRkYzVFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSE0yQ21WeFR6RmlUMDAyT1dRdlUwMW9NRFJoYzNOeWJIbHZUVmRZTlhFeVJsZFJUbWxMV0RBelNuSkJRamRTTjI0d01uTnBNbGRFVmpGeGVVZGhaMHRsUm5vS1MyaEdObE5rTTNwTWEzZFBTMncyUmlzelNuZzNVR1pPVkd3ck4wSmlkM05KTmpFek5EZzFUbEJwUkRkaFJtSldhR29yT0hjNGVHSm9RM1pHVWxsTGRRcHVhVkJEY1ZJMFQwTjJOazVLUm1SU2MzWk5la3BwZVhveEsySXhRek5RUjNadE0wVm1NQzlXTTFKc1NXTmtSMDB5V2pRMVIxVmtLMVZZY0RaS05IRkxDbFJOVkcxb01tMDJhalJFWkRWdVN6VkdTRzVrU25KTU5GazBWR1lyUjI5WmRXaGlNbWxoYUZGTFZHeEJiMUpvUTBVMFkwRjRObVJpUm5kSWVWVjZTM2tLTmxsRVIzUlBUQzlHZEZreFZISkphbFUyV1ZsamJWbFpOV2RhSzBwcmJEZHdPR1ZMVjI5eWRHdFFVMGRXU0hKTmFtVnRTa3hFZEV0NlQySkhVRzFyT1FwUGIxTktSMHBYZDJWaGJWSmFjbWgwVVc0NFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUE1tcHNLMVp1UjI5YVN6RjZUVmxIYm1GVGVYRjFjSHBXZGl0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1lrWnpRVFV6VjNGMllXUjBUVFJIVDFsWFpsTm9Vbmg1V21sclN6RXZNRlIzVmtSS1JEbExhbkZqT0RCSmRGZFFTUXBLUTB3clpUbDJVMWxIWWtoaVdHRTVWMjFhYjBabVpuZExOMjExWVZoQk1qZHdNazl1WTNadE5VUTNZM1paUXpFcmNXZzFNa2xZY2tkT0swazJkamQ1Q20xWGRHMHpjemNyYUhGQ2JXUkNRVnBMVEdwM1oyUTRSM0E1U0VGeE0yUlljWEJ3VkdKTVdtSkRUV0V5TW5oeE1GTTBRaTk2WXpGNFlrMU5WbG8wYm1nS2RuRTVabXRUT0dwdWJrNW1TWE5pVlRCM0t5c3JSMjlvTDFwUmFtWXpTRkoyVDA5NWNrd3hUV3BxTVROMmRIUkphM0Y2UlhKaWNVdFZRMnRVVHpCTmFBbzFNRWRLU1RaU1NrWmlWVVJEZVZnMlIxZFNVelF6WW5ob1oyZDNhU3RTVVdzNFptaERjMGhPWlZVNWNFaFJWWEZ6VHpNclNqWktXRFJyWVVOT1ZFZG5DalpsTXpFMWMxbzVSRzU2VEZVMFpqVkpNMFJHV0RnNVdrbEtiekpyVDBoeFZ6bDZhZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2ZjODZlYWItODQ0NC00YjdkLWFlNTItZTcxMzI2ZTNlYjAxLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAxIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXaEU5SWVmWUNBSFlDaTY3WUNhOXFVR0swV1lwSzNsQmdUcWFRcVd4MVZuZ3d0NjJPeWNud2h2OQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1437" + - "2638" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:19 GMT + - Wed, 18 Oct 2023 16:44:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +401,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7940193-d82e-4b2f-b1ae-8fa5482e56a6 + - 5d9e9f2a-bd96-4051-93b0-43efc521a9e9 status: 200 OK code: 200 duration: "" @@ -344,19 +412,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/66609b41-6f0b-4e20-b1b1-adcebf968e47 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImF1dG9zY2FsZXItMDEiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGZUU1V2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtWNFRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNKVkNtUmlOVmt6UzJOa1RYVjBjVzByYUV4TFRGbzRWR1ZrY2twNmJtdFZSR0ZDT1V0M1FtTXlVbGxLY1ZGRll6aFZRbEpMYTJ3eE1sRmlVSHBtUlZaSWVra0tTREZ3TmxkemIxcHpjMHRzTXpGV2VVWnNZMEpPT0d4aWJXWXJja1F3VVRVclIxcDFOQzlOV0RnMWRtMWtZMmhpTDFFNGRrVldla0Z5WTNadVdtODJhZ3BPTkV4TFlsTXliV3BGZURZdlpFMU5kVTh3VW0xUlQxSmljR2gzV2pJclNFNVFSbVpyVGs1RFFqaElOak5NT0RGdGVsWTNRamxTYmxSYWVtb3JXWGQyQ2s5eFNGcFhVRU5rTW5SbFIzWlFieTgxVWxJd2JuSnBVMFp1U1V4SlZESnVaVGRYVG01SVFrNXBiMnRYY0ZCVFl6azFVMWt2V0d3eGMwdzNhazVEZGtVS1V6Vk5ZMmxJYnk4eWNWVlZla3d5YVV4SE1Dc3JUWFJKTWs5VlJXbzJRbkJ2V0ZoNVozZHpRWEl6UnpGaVpVOXRLMHN6YWtGbWVGSkdLM0UxY1ZwRGNncEZNbUZOVFZsbmJWTnBTVEpYZDFKQkwxSkZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9aekowWW5CdE1UTm5SVzFOT1hkeWIyTTBSemhuUkcxbmQxaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJXRzQ1ZUU5UGVITjRkME0xZUdSUVJHZHJURlJoWTI1RmQyaGpWbVJWTjFKbGNucERVR1EzSzI5S1pIVkVaVVZWVlFwSVZtUkdSa0phVFZodVMxUk1LMFpYTTB4eVdGVm9jR2hVWjA1alZrOW1kbVkzT0ZCd1ExY3lUMEpCYlhSalRVUXlRMkZQUzJOaFYwRjRUR3hVTldOVENuRnNXalJGYTI1SlRYaFlZakIxT1ROMVVURTRSalZoZVRGMWF6UjNVRWRJV0dSYVRtWlRiemQ2THpkc1ZtUmpLMVlyV1dNMmFtSk9XSGxuY21ONVNIY0tOemRqTlRsbGEwUk1VSGQ1YkdKT1JERnZRa1pMTW1JemREQm5OVFU1WkZKc1NqZG1hRWw2VEdvclQxRlNWamRoT1ZrcmVuSTFTSGs1YWt0cVNsY3plUXBuV0ZoRU1XZ3dlRE4xYTFkdk5HaGpkbU5FTjBrMFZEaHFVMlZaWnpSbWVVUkpabHB5ZFV0dlVuWlVWVzUzYUVsc01XOU5jRWx6Y0dKYWVGRnBVR1J1Q21OUVUwRXZkWE5uUTB4QmRGVmpUV054Wm1kM1ltNXZjMk5rWW1odmEwSk1TRkI1WndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE2NDI1M2EzLThiZjQtNDQ5MS1hMWM3LWJjMjA1MzU0ZmVmZi5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBhdXRvc2NhbGVyLTAxCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJhdXRvc2NhbGVyLTAxIgogICAgdXNlcjogYXV0b3NjYWxlci0wMS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGF1dG9zY2FsZXItMDEKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBhdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAzMHJOd2hYNk9PZW9GdHpZT2V2d0dvaE1sa2MybFo3bkFkMlVsNDhtYWRzMFhNWGpjRHhCb3VWYw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:44:00.098797Z","dhcp_enabled":true,"id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-10-18T16:44:00.098797Z","id":"9da3a37f-0bdc-47e2-bd67-e6c5dd55040c","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:44:00.098797Z"},{"created_at":"2023-10-18T16:44:00.098797Z","id":"71643564-6514-4b7d-b4f5-512d55efccdc","subnet":"fd68:d440:21c4:61e3::/64","updated_at":"2023-10-18T16:44:00.098797Z"}],"tags":[],"updated_at":"2023-10-18T16:44:00.098797Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}' headers: Content-Length: - - "2596" + - "715" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:20 GMT + - Wed, 18 Oct 2023 16:44:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,32 +434,131 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e407868-56fd-43c8-93d7-15fad6728dae + - 5d66c6c1-a8a7-4d8b-a24c-55404e850215 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"autoscaler-02","description":null,"tags":null,"autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33,"max_graceful_termination_sec":2664},"auto_upgrade":{"enable":null,"maintenance_window":null},"feature_gates":null,"admission_plugins":null,"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null},"apiserver_cert_sans":null}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":true,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":10,"ignore_daemonsets_utilization":true,"max_graceful_termination_sec":1337,"scale_down_delay_after_add":"20m","scale_down_disabled":true,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-01","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:03.047383Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1521" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 16:44:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 377ec869-7343-453d-ad11-02141bf736ad + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUlJkMDFzYjFoRVZFMTZUVlJCZUU1NlJUSk9SRkYzVFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSE0yQ21WeFR6RmlUMDAyT1dRdlUwMW9NRFJoYzNOeWJIbHZUVmRZTlhFeVJsZFJUbWxMV0RBelNuSkJRamRTTjI0d01uTnBNbGRFVmpGeGVVZGhaMHRsUm5vS1MyaEdObE5rTTNwTWEzZFBTMncyUmlzelNuZzNVR1pPVkd3ck4wSmlkM05KTmpFek5EZzFUbEJwUkRkaFJtSldhR29yT0hjNGVHSm9RM1pHVWxsTGRRcHVhVkJEY1ZJMFQwTjJOazVLUm1SU2MzWk5la3BwZVhveEsySXhRek5RUjNadE0wVm1NQzlXTTFKc1NXTmtSMDB5V2pRMVIxVmtLMVZZY0RaS05IRkxDbFJOVkcxb01tMDJhalJFWkRWdVN6VkdTRzVrU25KTU5GazBWR1lyUjI5WmRXaGlNbWxoYUZGTFZHeEJiMUpvUTBVMFkwRjRObVJpUm5kSWVWVjZTM2tLTmxsRVIzUlBUQzlHZEZreFZISkphbFUyV1ZsamJWbFpOV2RhSzBwcmJEZHdPR1ZMVjI5eWRHdFFVMGRXU0hKTmFtVnRTa3hFZEV0NlQySkhVRzFyT1FwUGIxTktSMHBYZDJWaGJWSmFjbWgwVVc0NFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUE1tcHNLMVp1UjI5YVN6RjZUVmxIYm1GVGVYRjFjSHBXZGl0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1lrWnpRVFV6VjNGMllXUjBUVFJIVDFsWFpsTm9Vbmg1V21sclN6RXZNRlIzVmtSS1JEbExhbkZqT0RCSmRGZFFTUXBLUTB3clpUbDJVMWxIWWtoaVdHRTVWMjFhYjBabVpuZExOMjExWVZoQk1qZHdNazl1WTNadE5VUTNZM1paUXpFcmNXZzFNa2xZY2tkT0swazJkamQ1Q20xWGRHMHpjemNyYUhGQ2JXUkNRVnBMVEdwM1oyUTRSM0E1U0VGeE0yUlljWEJ3VkdKTVdtSkRUV0V5TW5oeE1GTTBRaTk2WXpGNFlrMU5WbG8wYm1nS2RuRTVabXRUT0dwdWJrNW1TWE5pVlRCM0t5c3JSMjlvTDFwUmFtWXpTRkoyVDA5NWNrd3hUV3BxTVROMmRIUkphM0Y2UlhKaWNVdFZRMnRVVHpCTmFBbzFNRWRLU1RaU1NrWmlWVVJEZVZnMlIxZFNVelF6WW5ob1oyZDNhU3RTVVdzNFptaERjMGhPWlZVNWNFaFJWWEZ6VHpNclNqWktXRFJyWVVOT1ZFZG5DalpsTXpFMWMxbzVSRzU2VEZVMFpqVkpNMFJHV0RnNVdrbEtiekpyVDBoeFZ6bDZhZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2ZjODZlYWItODQ0NC00YjdkLWFlNTItZTcxMzI2ZTNlYjAxLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAxIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAxLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXaEU5SWVmWUNBSFlDaTY3WUNhOXFVR0swV1lwSzNsQmdUcWFRcVd4MVZuZ3d0NjJPeWNud2h2OQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2638" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ee507cd-bfef-4db8-9725-ee65b2962df1 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-autoscaler-02","description":null,"tags":null,"autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33,"max_graceful_termination_sec":2664},"auto_upgrade":{"enable":null,"maintenance_window":null},"feature_gates":null,"admission_plugins":null,"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null},"apiserver_cert_sans":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: PATCH response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:20.295521307Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:08.667826238Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1520" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6b14b085-7d71-4a46-9d0d-fea425563367 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:08.667826Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:20 GMT + - Wed, 18 Oct 2023 16:44:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b127544b-92d4-47d2-aa1c-3cc9fe155412 + - da3dc8ea-db43-4c19-8bd0-f420ac27ce23 status: 200 OK code: 200 duration: "" @@ -412,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:20.295521Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:09.869754Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:20 GMT + - Wed, 18 Oct 2023 16:44:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4286a183-5dae-4945-a8bb-75b39bb0d293 + - fd99dc9a-43dd-49f1-b8f1-50d275705200 status: 200 OK code: 200 duration: "" @@ -445,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:21.497488Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:09.869754Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1438" + - "1522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:25 GMT + - Wed, 18 Oct 2023 16:44:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb6982f1-26fb-4755-8a72-eb5981ba7cf1 + - 583a421f-6b3e-4e72-a9b5-2a0595255b92 status: 200 OK code: 200 duration: "" @@ -478,19 +645,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:21.497488Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUlJkMDFzYjFoRVZFMTZUVlJCZUU1NlJUSk9SRkYzVFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSE0yQ21WeFR6RmlUMDAyT1dRdlUwMW9NRFJoYzNOeWJIbHZUVmRZTlhFeVJsZFJUbWxMV0RBelNuSkJRamRTTjI0d01uTnBNbGRFVmpGeGVVZGhaMHRsUm5vS1MyaEdObE5rTTNwTWEzZFBTMncyUmlzelNuZzNVR1pPVkd3ck4wSmlkM05KTmpFek5EZzFUbEJwUkRkaFJtSldhR29yT0hjNGVHSm9RM1pHVWxsTGRRcHVhVkJEY1ZJMFQwTjJOazVLUm1SU2MzWk5la3BwZVhveEsySXhRek5RUjNadE0wVm1NQzlXTTFKc1NXTmtSMDB5V2pRMVIxVmtLMVZZY0RaS05IRkxDbFJOVkcxb01tMDJhalJFWkRWdVN6VkdTRzVrU25KTU5GazBWR1lyUjI5WmRXaGlNbWxoYUZGTFZHeEJiMUpvUTBVMFkwRjRObVJpUm5kSWVWVjZTM2tLTmxsRVIzUlBUQzlHZEZreFZISkphbFUyV1ZsamJWbFpOV2RhSzBwcmJEZHdPR1ZMVjI5eWRHdFFVMGRXU0hKTmFtVnRTa3hFZEV0NlQySkhVRzFyT1FwUGIxTktSMHBYZDJWaGJWSmFjbWgwVVc0NFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUE1tcHNLMVp1UjI5YVN6RjZUVmxIYm1GVGVYRjFjSHBXZGl0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1lrWnpRVFV6VjNGMllXUjBUVFJIVDFsWFpsTm9Vbmg1V21sclN6RXZNRlIzVmtSS1JEbExhbkZqT0RCSmRGZFFTUXBLUTB3clpUbDJVMWxIWWtoaVdHRTVWMjFhYjBabVpuZExOMjExWVZoQk1qZHdNazl1WTNadE5VUTNZM1paUXpFcmNXZzFNa2xZY2tkT0swazJkamQ1Q20xWGRHMHpjemNyYUhGQ2JXUkNRVnBMVEdwM1oyUTRSM0E1U0VGeE0yUlljWEJ3VkdKTVdtSkRUV0V5TW5oeE1GTTBRaTk2WXpGNFlrMU5WbG8wYm1nS2RuRTVabXRUT0dwdWJrNW1TWE5pVlRCM0t5c3JSMjlvTDFwUmFtWXpTRkoyVDA5NWNrd3hUV3BxTVROMmRIUkphM0Y2UlhKaWNVdFZRMnRVVHpCTmFBbzFNRWRLU1RaU1NrWmlWVVJEZVZnMlIxZFNVelF6WW5ob1oyZDNhU3RTVVdzNFptaERjMGhPWlZVNWNFaFJWWEZ6VHpNclNqWktXRFJyWVVOT1ZFZG5DalpsTXpFMWMxbzVSRzU2VEZVMFpqVkpNMFJHV0RnNVdrbEtiekpyVDBoeFZ6bDZhZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2ZjODZlYWItODQ0NC00YjdkLWFlNTItZTcxMzI2ZTNlYjAxLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAyIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXaEU5SWVmWUNBSFlDaTY3WUNhOXFVR0swV1lwSzNsQmdUcWFRcVd4MVZuZ3d0NjJPeWNud2h2OQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1438" + - "2638" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:25 GMT + - Wed, 18 Oct 2023 16:44:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08526950-4e1f-47d6-983e-1864228f3e9e + - 56697d24-319a-40a2-aba4-68fd8fab80aa status: 200 OK code: 200 duration: "" @@ -511,19 +678,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImF1dG9zY2FsZXItMDIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGZUU1V2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtWNFRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNKVkNtUmlOVmt6UzJOa1RYVjBjVzByYUV4TFRGbzRWR1ZrY2twNmJtdFZSR0ZDT1V0M1FtTXlVbGxLY1ZGRll6aFZRbEpMYTJ3eE1sRmlVSHBtUlZaSWVra0tTREZ3TmxkemIxcHpjMHRzTXpGV2VVWnNZMEpPT0d4aWJXWXJja1F3VVRVclIxcDFOQzlOV0RnMWRtMWtZMmhpTDFFNGRrVldla0Z5WTNadVdtODJhZ3BPTkV4TFlsTXliV3BGZURZdlpFMU5kVTh3VW0xUlQxSmljR2gzV2pJclNFNVFSbVpyVGs1RFFqaElOak5NT0RGdGVsWTNRamxTYmxSYWVtb3JXWGQyQ2s5eFNGcFhVRU5rTW5SbFIzWlFieTgxVWxJd2JuSnBVMFp1U1V4SlZESnVaVGRYVG01SVFrNXBiMnRYY0ZCVFl6azFVMWt2V0d3eGMwdzNhazVEZGtVS1V6Vk5ZMmxJYnk4eWNWVlZla3d5YVV4SE1Dc3JUWFJKTWs5VlJXbzJRbkJ2V0ZoNVozZHpRWEl6UnpGaVpVOXRLMHN6YWtGbWVGSkdLM0UxY1ZwRGNncEZNbUZOVFZsbmJWTnBTVEpYZDFKQkwxSkZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9aekowWW5CdE1UTm5SVzFOT1hkeWIyTTBSemhuUkcxbmQxaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJXRzQ1ZUU5UGVITjRkME0xZUdSUVJHZHJURlJoWTI1RmQyaGpWbVJWTjFKbGNucERVR1EzSzI5S1pIVkVaVVZWVlFwSVZtUkdSa0phVFZodVMxUk1LMFpYTTB4eVdGVm9jR2hVWjA1alZrOW1kbVkzT0ZCd1ExY3lUMEpCYlhSalRVUXlRMkZQUzJOaFYwRjRUR3hVTldOVENuRnNXalJGYTI1SlRYaFlZakIxT1ROMVVURTRSalZoZVRGMWF6UjNVRWRJV0dSYVRtWlRiemQ2THpkc1ZtUmpLMVlyV1dNMmFtSk9XSGxuY21ONVNIY0tOemRqTlRsbGEwUk1VSGQ1YkdKT1JERnZRa1pMTW1JemREQm5OVFU1WkZKc1NqZG1hRWw2VEdvclQxRlNWamRoT1ZrcmVuSTFTSGs1YWt0cVNsY3plUXBuV0ZoRU1XZ3dlRE4xYTFkdk5HaGpkbU5FTjBrMFZEaHFVMlZaWnpSbWVVUkpabHB5ZFV0dlVuWlVWVzUzYUVsc01XOU5jRWx6Y0dKYWVGRnBVR1J1Q21OUVUwRXZkWE5uUTB4QmRGVmpUV054Wm1kM1ltNXZjMk5rWW1odmEwSk1TRkI1WndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE2NDI1M2EzLThiZjQtNDQ5MS1hMWM3LWJjMjA1MzU0ZmVmZi5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBhdXRvc2NhbGVyLTAyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJhdXRvc2NhbGVyLTAyIgogICAgdXNlcjogYXV0b3NjYWxlci0wMi1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGF1dG9zY2FsZXItMDIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBhdXRvc2NhbGVyLTAyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAzMHJOd2hYNk9PZW9GdHpZT2V2d0dvaE1sa2MybFo3bkFkMlVsNDhtYWRzMFhNWGpjRHhCb3VWYw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:09.869754Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2596" + - "1522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:25 GMT + - Wed, 18 Oct 2023 16:44:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b543800-aa56-47f5-9ea8-b7de017bbd97 + - 854cac55-3584-4c94-8cd3-28e852e6b6af status: 200 OK code: 200 duration: "" @@ -544,19 +711,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/66609b41-6f0b-4e20-b1b1-adcebf968e47 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:21.497488Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:44:00.098797Z","dhcp_enabled":true,"id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","name":"test-autoscaler","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-10-18T16:44:00.098797Z","id":"9da3a37f-0bdc-47e2-bd67-e6c5dd55040c","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:44:00.098797Z"},{"created_at":"2023-10-18T16:44:00.098797Z","id":"71643564-6514-4b7d-b4f5-512d55efccdc","subnet":"fd68:d440:21c4:61e3::/64","updated_at":"2023-10-18T16:44:00.098797Z"}],"tags":[],"updated_at":"2023-10-18T16:44:00.098797Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}' headers: Content-Length: - - "1438" + - "715" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:25 GMT + - Wed, 18 Oct 2023 16:44:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8525f666-27e9-45f9-bc8a-1278ab1e3b59 + - 71d71fa6-2d64-46f0-962b-14a55cde4d86 status: 200 OK code: 200 duration: "" @@ -577,19 +744,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:21.497488Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:09.869754Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1438" + - "1522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:26 GMT + - Wed, 18 Oct 2023 16:44:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e658e343-9834-428d-8a77-f8b832af802e + - eb4fe91b-d2b3-4279-9cf3-3a307aba4698 status: 200 OK code: 200 duration: "" @@ -610,19 +777,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImF1dG9zY2FsZXItMDIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGZUU1V2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtWNFRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNKVkNtUmlOVmt6UzJOa1RYVjBjVzByYUV4TFRGbzRWR1ZrY2twNmJtdFZSR0ZDT1V0M1FtTXlVbGxLY1ZGRll6aFZRbEpMYTJ3eE1sRmlVSHBtUlZaSWVra0tTREZ3TmxkemIxcHpjMHRzTXpGV2VVWnNZMEpPT0d4aWJXWXJja1F3VVRVclIxcDFOQzlOV0RnMWRtMWtZMmhpTDFFNGRrVldla0Z5WTNadVdtODJhZ3BPTkV4TFlsTXliV3BGZURZdlpFMU5kVTh3VW0xUlQxSmljR2gzV2pJclNFNVFSbVpyVGs1RFFqaElOak5NT0RGdGVsWTNRamxTYmxSYWVtb3JXWGQyQ2s5eFNGcFhVRU5rTW5SbFIzWlFieTgxVWxJd2JuSnBVMFp1U1V4SlZESnVaVGRYVG01SVFrNXBiMnRYY0ZCVFl6azFVMWt2V0d3eGMwdzNhazVEZGtVS1V6Vk5ZMmxJYnk4eWNWVlZla3d5YVV4SE1Dc3JUWFJKTWs5VlJXbzJRbkJ2V0ZoNVozZHpRWEl6UnpGaVpVOXRLMHN6YWtGbWVGSkdLM0UxY1ZwRGNncEZNbUZOVFZsbmJWTnBTVEpYZDFKQkwxSkZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9aekowWW5CdE1UTm5SVzFOT1hkeWIyTTBSemhuUkcxbmQxaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJXRzQ1ZUU5UGVITjRkME0xZUdSUVJHZHJURlJoWTI1RmQyaGpWbVJWTjFKbGNucERVR1EzSzI5S1pIVkVaVVZWVlFwSVZtUkdSa0phVFZodVMxUk1LMFpYTTB4eVdGVm9jR2hVWjA1alZrOW1kbVkzT0ZCd1ExY3lUMEpCYlhSalRVUXlRMkZQUzJOaFYwRjRUR3hVTldOVENuRnNXalJGYTI1SlRYaFlZakIxT1ROMVVURTRSalZoZVRGMWF6UjNVRWRJV0dSYVRtWlRiemQ2THpkc1ZtUmpLMVlyV1dNMmFtSk9XSGxuY21ONVNIY0tOemRqTlRsbGEwUk1VSGQ1YkdKT1JERnZRa1pMTW1JemREQm5OVFU1WkZKc1NqZG1hRWw2VEdvclQxRlNWamRoT1ZrcmVuSTFTSGs1YWt0cVNsY3plUXBuV0ZoRU1XZ3dlRE4xYTFkdk5HaGpkbU5FTjBrMFZEaHFVMlZaWnpSbWVVUkpabHB5ZFV0dlVuWlVWVzUzYUVsc01XOU5jRWx6Y0dKYWVGRnBVR1J1Q21OUVUwRXZkWE5uUTB4QmRGVmpUV054Wm1kM1ltNXZjMk5rWW1odmEwSk1TRkI1WndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzE2NDI1M2EzLThiZjQtNDQ5MS1hMWM3LWJjMjA1MzU0ZmVmZi5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBhdXRvc2NhbGVyLTAyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJhdXRvc2NhbGVyLTAyIgogICAgdXNlcjogYXV0b3NjYWxlci0wMi1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGF1dG9zY2FsZXItMDIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBhdXRvc2NhbGVyLTAyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAzMHJOd2hYNk9PZW9GdHpZT2V2d0dvaE1sa2MybFo3bkFkMlVsNDhtYWRzMFhNWGpjRHhCb3VWYw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUlJkMDFzYjFoRVZFMTZUVlJCZUU1NlJUSk9SRkYzVFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUSE0yQ21WeFR6RmlUMDAyT1dRdlUwMW9NRFJoYzNOeWJIbHZUVmRZTlhFeVJsZFJUbWxMV0RBelNuSkJRamRTTjI0d01uTnBNbGRFVmpGeGVVZGhaMHRsUm5vS1MyaEdObE5rTTNwTWEzZFBTMncyUmlzelNuZzNVR1pPVkd3ck4wSmlkM05KTmpFek5EZzFUbEJwUkRkaFJtSldhR29yT0hjNGVHSm9RM1pHVWxsTGRRcHVhVkJEY1ZJMFQwTjJOazVLUm1SU2MzWk5la3BwZVhveEsySXhRek5RUjNadE0wVm1NQzlXTTFKc1NXTmtSMDB5V2pRMVIxVmtLMVZZY0RaS05IRkxDbFJOVkcxb01tMDJhalJFWkRWdVN6VkdTRzVrU25KTU5GazBWR1lyUjI5WmRXaGlNbWxoYUZGTFZHeEJiMUpvUTBVMFkwRjRObVJpUm5kSWVWVjZTM2tLTmxsRVIzUlBUQzlHZEZreFZISkphbFUyV1ZsamJWbFpOV2RhSzBwcmJEZHdPR1ZMVjI5eWRHdFFVMGRXU0hKTmFtVnRTa3hFZEV0NlQySkhVRzFyT1FwUGIxTktSMHBYZDJWaGJWSmFjbWgwVVc0NFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUE1tcHNLMVp1UjI5YVN6RjZUVmxIYm1GVGVYRjFjSHBXZGl0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1lrWnpRVFV6VjNGMllXUjBUVFJIVDFsWFpsTm9Vbmg1V21sclN6RXZNRlIzVmtSS1JEbExhbkZqT0RCSmRGZFFTUXBLUTB3clpUbDJVMWxIWWtoaVdHRTVWMjFhYjBabVpuZExOMjExWVZoQk1qZHdNazl1WTNadE5VUTNZM1paUXpFcmNXZzFNa2xZY2tkT0swazJkamQ1Q20xWGRHMHpjemNyYUhGQ2JXUkNRVnBMVEdwM1oyUTRSM0E1U0VGeE0yUlljWEJ3VkdKTVdtSkRUV0V5TW5oeE1GTTBRaTk2WXpGNFlrMU5WbG8wYm1nS2RuRTVabXRUT0dwdWJrNW1TWE5pVlRCM0t5c3JSMjlvTDFwUmFtWXpTRkoyVDA5NWNrd3hUV3BxTVROMmRIUkphM0Y2UlhKaWNVdFZRMnRVVHpCTmFBbzFNRWRLU1RaU1NrWmlWVVJEZVZnMlIxZFNVelF6WW5ob1oyZDNhU3RTVVdzNFptaERjMGhPWlZVNWNFaFJWWEZ6VHpNclNqWktXRFJyWVVOT1ZFZG5DalpsTXpFMWMxbzVSRzU2VEZVMFpqVkpNMFJHV0RnNVdrbEtiekpyVDBoeFZ6bDZhZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2ZjODZlYWItODQ0NC00YjdkLWFlNTItZTcxMzI2ZTNlYjAxLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1hdXRvc2NhbGVyLTAyIgogICAgdXNlcjogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvc2NhbGVyLTAyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1hdXRvc2NhbGVyLTAyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXaEU5SWVmWUNBSFlDaTY3WUNhOXFVR0swV1lwSzNsQmdUcWFRcVd4MVZuZ3d0NjJPeWNud2h2OQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2596" + - "2638" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:26 GMT + - Wed, 18 Oct 2023 16:44:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea4d4574-7dd5-477c-af40-04d00e166bd4 + - 9d700034-4ecd-4dbd-afb3-0d2f5b688f84 status: 200 OK code: 200 duration: "" @@ -643,19 +810,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01?with_additional_resources=true method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:26.479694098Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:15.322099984Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:26 GMT + - Wed, 18 Oct 2023 16:44:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 558ec38b-c7eb-4988-bc1c-0ab8696aee90 + - d7bee4a9-09f4-4d20-947b-6026e15f73b6 status: 200 OK code: 200 duration: "" @@ -676,19 +843,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:26.479694Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:15.322100Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:26 GMT + - Wed, 18 Oct 2023 16:44:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e5d847d-c3e0-4d1a-a75a-957d4fa2f8f1 + - 90ace2d9-1b37-4da1-8c42-a110f556a660 status: 200 OK code: 200 duration: "" @@ -709,19 +876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://164253a3-8bf4-4491-a1c7-bc205354feff.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:13.912612Z","created_at":"2023-09-01T16:21:13.912612Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.164253a3-8bf4-4491-a1c7-bc205354feff.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"164253a3-8bf4-4491-a1c7-bc205354feff","ingress":"none","name":"autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:26.479694Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"most_pods","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":2664,"scale_down_delay_after_add":"20m","scale_down_disabled":false,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33},"cluster_url":"https://cfc86eab-8444-4b7d-ae52-e71326e3eb01.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:01.333778Z","created_at":"2023-10-18T16:44:01.333778Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.cfc86eab-8444-4b7d-ae52-e71326e3eb01.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","ingress":"none","name":"test-autoscaler-02","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"type":"kapsule","updated_at":"2023-10-18T16:44:15.322100Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:31 GMT + - Wed, 18 Oct 2023 16:44:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f34c747e-d86f-4570-9447-e33867219a69 + - 089b23ee-b1cd-4482-ab70-5b5dc207862c status: 200 OK code: 200 duration: "" @@ -742,10 +909,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"164253a3-8bf4-4491-a1c7-bc205354feff","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","type":"not_found"}' headers: Content-Length: - "128" @@ -754,7 +921,40 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:36 GMT + - Wed, 18 Oct 2023 16:44:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 99a3de3d-c6d2-4347-9072-cc1b05869e45 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/66609b41-6f0b-4e20-b1b1-adcebf968e47 + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"66609b41-6f0b-4e20-b1b1-adcebf968e47","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12465446-9d6b-46ed-9291-74af7ddf15a4 + - 5c0e7638-5c3f-4b85-9c92-1e19e2e201f7 status: 404 Not Found code: 404 duration: "" @@ -775,10 +975,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/164253a3-8bf4-4491-a1c7-bc205354feff + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/cfc86eab-8444-4b7d-ae52-e71326e3eb01 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"164253a3-8bf4-4491-a1c7-bc205354feff","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"cfc86eab-8444-4b7d-ae52-e71326e3eb01","type":"not_found"}' headers: Content-Length: - "128" @@ -787,7 +987,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:36 GMT + - Wed, 18 Oct 2023 16:44:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -797,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9195bcf2-bbe3-4837-8a84-a769bea2639c + - 9b31c1e8-2360-4efc-aa45-451fef385d4e status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-basic.cassette.yaml b/scaleway/testdata/k8s-cluster-basic.cassette.yaml index 57a9b2471d..102863bcac 100644 --- a/scaleway/testdata/k8s-cluster-basic.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-basic.cassette.yaml @@ -12,11 +12,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,7 +34,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb027f9f-561e-4c4d-ae73-d28bbadf3335 + - 3c9edd39-2d34-4699-9f33-3e36b5b8b746 status: 200 OK code: 200 duration: "" @@ -49,11 +49,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -61,7 +61,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -71,12 +71,80 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6df5d78a-10cc-47cc-90ed-5a020b447892 + - 148ce013-9118-4bf3-a44e-d701a1221764 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"ClusterConfigMinimal","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.27.4","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-minimal","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-18T16:44:13.182219Z","dhcp_enabled":true,"id":"f3137de7-572a-48e4-921c-20cbd352be1b","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:44:13.182219Z","id":"00541e5c-5a6f-48fe-bb5e-4b507b0d066e","subnet":"172.16.20.0/22","updated_at":"2023-10-18T16:44:13.182219Z"},{"created_at":"2023-10-18T16:44:13.182219Z","id":"1e83ba5a-7195-4b12-bc69-f89a59bcb25a","subnet":"fd63:256c:45f7:11b4::/64","updated_at":"2023-10-18T16:44:13.182219Z"}],"tags":[],"updated_at":"2023-10-18T16:44:13.182219Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "713" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c1042b6-5af1-46ad-9e1c-d80cf5ef46c4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3137de7-572a-48e4-921c-20cbd352be1b + method: GET + response: + body: '{"created_at":"2023-10-18T16:44:13.182219Z","dhcp_enabled":true,"id":"f3137de7-572a-48e4-921c-20cbd352be1b","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:44:13.182219Z","id":"00541e5c-5a6f-48fe-bb5e-4b507b0d066e","subnet":"172.16.20.0/22","updated_at":"2023-10-18T16:44:13.182219Z"},{"created_at":"2023-10-18T16:44:13.182219Z","id":"1e83ba5a-7195-4b12-bc69-f89a59bcb25a","subnet":"fd63:256c:45f7:11b4::/64","updated_at":"2023-10-18T16:44:13.182219Z"}],"tags":[],"updated_at":"2023-10-18T16:44:13.182219Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "713" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a556ebd9-b91b-4cdd-9b69-346a899f5cf6 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-minimal","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.27.6","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b"}' form: {} headers: Content-Type: @@ -87,16 +155,16 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757421665Z","created_at":"2023-09-01T16:21:40.757421665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:40.772505699Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065549682Z","created_at":"2023-10-18T16:44:14.065549682Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:14.077081658Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1432" + - "1503" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:40 GMT + - Wed, 18 Oct 2023 16:44:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -106,7 +174,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e54cab59-5e23-4a2f-a30a-a79b8c46c3c5 + - d972e3d5-b7b1-4f42-ac99-d0212786a9f6 status: 200 OK code: 200 duration: "" @@ -117,19 +185,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:40.772506Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:14.077082Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1423" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:40 GMT + - Wed, 18 Oct 2023 16:44:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -139,7 +207,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b56a4b0c-ca22-4fc1-96d3-ade0effd294e + - 9b190f97-6e8f-4c54-92a6-c88f7f65841a status: 200 OK code: 200 duration: "" @@ -150,19 +218,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:42.397631Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:15.566447Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1428" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:45 GMT + - Wed, 18 Oct 2023 16:44:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -172,7 +240,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 420b313d-d051-477d-86c9-d09531208947 + - c85f0aa4-1481-4f0a-a761-f47475accd6e status: 200 OK code: 200 duration: "" @@ -183,19 +251,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:42.397631Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:15.566447Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1428" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:44:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -205,7 +273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b46c1dde-2617-4b28-9475-78e4d98110c0 + - ce24cd65-07d9-406e-b999-20794dcef9e0 status: 200 OK code: 200 duration: "" @@ -216,19 +284,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsdXN0ZXJjb25maWdtaW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxRVozcE5WRVV5VFdwRk1FMXNiMWhFVkUxNlRVUm5lazFVUlRKTmFrVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRVVlBDbUp2Ylc4NVdEWXJNemxJUVdGQmQxZGtVV0ZNZVhOU2JtbE9TazlOVUVwUmJWcFVPVEU1ZURKSVQwZGxZeXRxTDI1TVNETlhVMmd6YVhablZHSnBSWG9LTlVkU1ZVWjZSWE13Unl0a01YSmtWVGc0Ym5CYVZXcEZXRWhVSzA0eVVrNXJabUpIZERaUVZ6STBXRVoxV25CNlNGRnFNelUxV0U5blowNUhhMFF5VEFwelNESXlPWE5EY2xSMk1tTnRTRGxXUjFsYVZWRXdkbGxIYmxOVE1EVm1hMlJQVUN0SGQwOW9jVEp1YzBSWlprUnNXVlp1ZEVSeWJ6aE1RbUYzT0hwbENsVkROak5IU25ad2VtZE5ielV4Y25jM1VYVllTRXhhUldsNmIzVlVUMEU1Y3pCc2FtMXZSVGRRTVdzNGJWWnBkV1pRYlVGbU5pdFpiSEJFYUc0MFlUa0tkVlZyZVZZNFUySndlbk5zVWxZeFVHeHNSM00zY2xab2QzZ3ZaMHRGVkRGR1FWSTRXbGN2VW1oUk4wVjVVVTl2TjNwWWIwSm5VQ3RoU0hKSFJ6ZzJUZ3BUU1Uxd01XdzBkVk42YmpsR01tZHRPWGhGUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpLWXpWeVkwZEpla3BZWWpoU1RtdDRUa3MyV2tkYWJtWXJiR3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCVXpkQ1pHOW5kR2wwYjJGNFkwOU5PVFJVVG1sVmNIY3ZObkZGTkhaSFNIUkNZamgzUWxKcFdrNVFkaTgwYmtnNFpBcG5VRXhrT0c5V1EwZE5VelZ0VUdaVlVXSXlZVkZVVFd3ck1rSTFPR3N2YzNabFlVVjVWMGh2Um5OSlpsRnBOV3hrTmtGQmVWTjRNWE5rYjJWM04wOXBDa3h3YmtKa2JEWnhlRkEyTDBVNGJtRXJRVXhGT0RSeVVtUXJTbk5VZDFkQlRqSmhlVmRDYW5nMFpuVkZOMVpyZDNoMlJIQTRSR3RvYW1SWFJWSkpiWEFLVlZaTVlqWnhjSFZTVUhZeVNWVnFZMFJZY0RGUWVXOUJXVXB4U1UxM1lVWlplVXR5T1N0UFVYSk5jVTlyU3paME9EUXJVVVJJYWxwVUwzQk1TRFpETlFwSGRIRnhiMGROU1U1TVNtaG5iVWRsYjFVclZUUXJWR05NV0ZsRFJuZzVORVozYW5seWRFMDVNVTlOY1hWdmQzQkdTR3R1YWpWV1FXMWpSalpXZDNaQ0NtVmhNemhuTUhkWWNHMWxZVFJSUzB0R1V6TmxlbWh5VmxGcVdsa3ZjMmRzZDJrellnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8yZjgyZTZmNS1mMmQ2LTQ3ZWItOWVlZC0yNzMxN2Y1Y2YyMTcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2x1c3RlcmNvbmZpZ21pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsdXN0ZXJjb25maWdtaW5pbWFsIgogICAgdXNlcjogY2x1c3RlcmNvbmZpZ21pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbHVzdGVyY29uZmlnbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJjb25maWdtaW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXaVEwODJSTTdSb1VlRUh5Z0trVWs3M0x1NWlqNHFPNndVTGtmaVBlMzF3cWtRWDI5TUZkdHFXbA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUlJlRTVXYjFoRVZFMTZUVlJCZUU1NlJUSk9SRkY0VGxadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJVRVJKQ21sVmJEbEZNV0ZTUlRGcVowbEtXR1pJVGtKbFdXdFJUM1JYYUVaMVNWUjFSVU5WT1VwMWJuRnpha1p5YnpCYWFpdHBXRlJYTjNjcmRuRTJaemRFTlUwS2NYWTRTMmQxYTBreWJrSTVMMUoxZHpCelYxWXJOakpFYlhsaFdISlpTM2RPU21OeFJ6aFNOM0E0VjJSTFltaDNWU3QzTDNFeWRXOU1abVZ0TlUxWk13cHJTbmhwV1VWclNqSk5aRGswUjBwT2RreDZiRFIxUTNGbWRGbFFkSGxCTmxZMFkyZzNWR2xoTkd4Rk5HY3dOVE5EZGxKSk0wZDJPSEFyWWs1c1NIWTJDalJFZDA1SVpVWndNRWwxU0c5dVdWWnFZMjR4WVVOVk5qUXhRbGRZU1RJeWJUZzJkblEyYlVzdmVreFhRalozZDFkQldXRkdlVzlSVVRSeVdHcDZPVmdLT0ZwU1RtRnJTamxGUTJkSVpXMHhOREJMTHlzMlVYbDRSRlpHUkdsaE1ISjBUMDlvV0dsRFpVTlRUMkpVTkhocVlWUkVUakpyYkZrMlpFb3ZURFYyV2dwMmNrRXJUVEpPYWtOUGNqWklVMm96VkRoelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUVNuZEVZMFV2VVZkU1ZXYzJPRlZCVjFvdk5qaEVMMHR2UjJsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRGVHWkJhM0p6VmtGdVowZHBPWGhUYm5wRGNUTXlZVVpET1RSM01XSnRVMjVZTkZaQ1VXaG1jVTV3YUhkbFUzaFRRUXAzWW0xWVpUSmpXVXBuTTFKQ2FHWXpVRE5FWlhGMGJYSkhlRnB4ZFU5SlNGUXJaalJ1UWxWb2FVVk9aM0JIZDIxMFMweHRTVFZ4Um1vM1oxRlNiRUZJQ21GME1FVlBTMWROVkZkQ2FHNW5hazFCVFRBM2MxWjZRMVpVUVZJd05FdDZlbk5EYUdkSmJHRkJOakJTU1ZrelVtNXlNM0p5ZEdSQkwyMVRTalpyT1ZRS2F6ZFdaSEJWUjNSamNIcG9hREJ3TWxSNFpFRmFURkJCVG5SSk5YZ3djQ3R6YW1oc1JGVkJka0kwVlVWdlExTldOV0pQY0U0eU1FdHNRV1JvT0RnMVdBbzRMMVp2YjB4c2RsTXpTaXRTYm5WTGNEUlZaRU55YjNOM2JreGxUR3czU21Fd1JHTXZla2xZY1hwRGFGQnRLMUF3SzJZeGFHeFBhMmh5ZG5ONlJVNVRDblJVVWpkcVMxWjZMMk12ZDNGeWJpOUZiM040YmsxMWQwMVRSSFpvVjNnMWJtMUdSQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMGQ4OGViMGItNjQzZS00MzBhLTk4NWItNTY0ZjMxZTNhYWE0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiUmNDdHl4eFFyUTdHbm04RG9DT0E2RGk4TDJSdHg5N1dyM0g3VnNvWkQ3ZlBtbVhGbnJualZnRg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2652" + - "2590" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:44:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -238,7 +306,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ace0b3f-de19-4579-ac35-ca31096e79d8 + - 63153c41-3505-4c55-af17-96a4f9d0ca3c status: 200 OK code: 200 duration: "" @@ -249,19 +317,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:42.397631Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:15.566447Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1428" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:44:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -271,7 +339,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f785703-7cf6-48b2-9c24-2e178368fcb9 + - eec0ef2a-76ff-47d9-bd8b-5a7a6a0d4fb1 status: 200 OK code: 200 duration: "" @@ -282,19 +350,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3137de7-572a-48e4-921c-20cbd352be1b method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:42.397631Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"created_at":"2023-10-18T16:44:13.182219Z","dhcp_enabled":true,"id":"f3137de7-572a-48e4-921c-20cbd352be1b","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:44:13.182219Z","id":"00541e5c-5a6f-48fe-bb5e-4b507b0d066e","subnet":"172.16.20.0/22","updated_at":"2023-10-18T16:44:13.182219Z"},{"created_at":"2023-10-18T16:44:13.182219Z","id":"1e83ba5a-7195-4b12-bc69-f89a59bcb25a","subnet":"fd63:256c:45f7:11b4::/64","updated_at":"2023-10-18T16:44:13.182219Z"}],"tags":[],"updated_at":"2023-10-18T16:44:13.182219Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1428" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:44:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -304,7 +372,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b031f26-6cda-48ef-849a-67589c217160 + - f85919d9-c06c-4d66-8ea5-24136fa62139 status: 200 OK code: 200 duration: "" @@ -315,19 +383,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsdXN0ZXJjb25maWdtaW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxRVozcE5WRVV5VFdwRk1FMXNiMWhFVkUxNlRVUm5lazFVUlRKTmFrVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRVVlBDbUp2Ylc4NVdEWXJNemxJUVdGQmQxZGtVV0ZNZVhOU2JtbE9TazlOVUVwUmJWcFVPVEU1ZURKSVQwZGxZeXRxTDI1TVNETlhVMmd6YVhablZHSnBSWG9LTlVkU1ZVWjZSWE13Unl0a01YSmtWVGc0Ym5CYVZXcEZXRWhVSzA0eVVrNXJabUpIZERaUVZ6STBXRVoxV25CNlNGRnFNelUxV0U5blowNUhhMFF5VEFwelNESXlPWE5EY2xSMk1tTnRTRGxXUjFsYVZWRXdkbGxIYmxOVE1EVm1hMlJQVUN0SGQwOW9jVEp1YzBSWlprUnNXVlp1ZEVSeWJ6aE1RbUYzT0hwbENsVkROak5IU25ad2VtZE5ielV4Y25jM1VYVllTRXhhUldsNmIzVlVUMEU1Y3pCc2FtMXZSVGRRTVdzNGJWWnBkV1pRYlVGbU5pdFpiSEJFYUc0MFlUa0tkVlZyZVZZNFUySndlbk5zVWxZeFVHeHNSM00zY2xab2QzZ3ZaMHRGVkRGR1FWSTRXbGN2VW1oUk4wVjVVVTl2TjNwWWIwSm5VQ3RoU0hKSFJ6ZzJUZ3BUU1Uxd01XdzBkVk42YmpsR01tZHRPWGhGUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpLWXpWeVkwZEpla3BZWWpoU1RtdDRUa3MyV2tkYWJtWXJiR3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCVXpkQ1pHOW5kR2wwYjJGNFkwOU5PVFJVVG1sVmNIY3ZObkZGTkhaSFNIUkNZamgzUWxKcFdrNVFkaTgwYmtnNFpBcG5VRXhrT0c5V1EwZE5VelZ0VUdaVlVXSXlZVkZVVFd3ck1rSTFPR3N2YzNabFlVVjVWMGh2Um5OSlpsRnBOV3hrTmtGQmVWTjRNWE5rYjJWM04wOXBDa3h3YmtKa2JEWnhlRkEyTDBVNGJtRXJRVXhGT0RSeVVtUXJTbk5VZDFkQlRqSmhlVmRDYW5nMFpuVkZOMVpyZDNoMlJIQTRSR3RvYW1SWFJWSkpiWEFLVlZaTVlqWnhjSFZTVUhZeVNWVnFZMFJZY0RGUWVXOUJXVXB4U1UxM1lVWlplVXR5T1N0UFVYSk5jVTlyU3paME9EUXJVVVJJYWxwVUwzQk1TRFpETlFwSGRIRnhiMGROU1U1TVNtaG5iVWRsYjFVclZUUXJWR05NV0ZsRFJuZzVORVozYW5seWRFMDVNVTlOY1hWdmQzQkdTR3R1YWpWV1FXMWpSalpXZDNaQ0NtVmhNemhuTUhkWWNHMWxZVFJSUzB0R1V6TmxlbWh5VmxGcVdsa3ZjMmRzZDJrellnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8yZjgyZTZmNS1mMmQ2LTQ3ZWItOWVlZC0yNzMxN2Y1Y2YyMTcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2x1c3RlcmNvbmZpZ21pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsdXN0ZXJjb25maWdtaW5pbWFsIgogICAgdXNlcjogY2x1c3RlcmNvbmZpZ21pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbHVzdGVyY29uZmlnbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJjb25maWdtaW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXaVEwODJSTTdSb1VlRUh5Z0trVWs3M0x1NWlqNHFPNndVTGtmaVBlMzF3cWtRWDI5TUZkdHFXbA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:15.566447Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "2652" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:44:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -337,7 +405,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 593a6800-d798-47f8-8267-487c5954a0a0 + - 1635184e-f0c2-49fb-80ac-7b021c87e3e3 status: 200 OK code: 200 duration: "" @@ -348,19 +416,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:42.397631Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUlJlRTVXYjFoRVZFMTZUVlJCZUU1NlJUSk9SRkY0VGxadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJVRVJKQ21sVmJEbEZNV0ZTUlRGcVowbEtXR1pJVGtKbFdXdFJUM1JYYUVaMVNWUjFSVU5WT1VwMWJuRnpha1p5YnpCYWFpdHBXRlJYTjNjcmRuRTJaemRFTlUwS2NYWTRTMmQxYTBreWJrSTVMMUoxZHpCelYxWXJOakpFYlhsaFdISlpTM2RPU21OeFJ6aFNOM0E0VjJSTFltaDNWU3QzTDNFeWRXOU1abVZ0TlUxWk13cHJTbmhwV1VWclNqSk5aRGswUjBwT2RreDZiRFIxUTNGbWRGbFFkSGxCTmxZMFkyZzNWR2xoTkd4Rk5HY3dOVE5EZGxKSk0wZDJPSEFyWWs1c1NIWTJDalJFZDA1SVpVWndNRWwxU0c5dVdWWnFZMjR4WVVOVk5qUXhRbGRZU1RJeWJUZzJkblEyYlVzdmVreFhRalozZDFkQldXRkdlVzlSVVRSeVdHcDZPVmdLT0ZwU1RtRnJTamxGUTJkSVpXMHhOREJMTHlzMlVYbDRSRlpHUkdsaE1ISjBUMDlvV0dsRFpVTlRUMkpVTkhocVlWUkVUakpyYkZrMlpFb3ZURFYyV2dwMmNrRXJUVEpPYWtOUGNqWklVMm96VkRoelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUVNuZEVZMFV2VVZkU1ZXYzJPRlZCVjFvdk5qaEVMMHR2UjJsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRGVHWkJhM0p6VmtGdVowZHBPWGhUYm5wRGNUTXlZVVpET1RSM01XSnRVMjVZTkZaQ1VXaG1jVTV3YUhkbFUzaFRRUXAzWW0xWVpUSmpXVXBuTTFKQ2FHWXpVRE5FWlhGMGJYSkhlRnB4ZFU5SlNGUXJaalJ1UWxWb2FVVk9aM0JIZDIxMFMweHRTVFZ4Um1vM1oxRlNiRUZJQ21GME1FVlBTMWROVkZkQ2FHNW5hazFCVFRBM2MxWjZRMVpVUVZJd05FdDZlbk5EYUdkSmJHRkJOakJTU1ZrelVtNXlNM0p5ZEdSQkwyMVRTalpyT1ZRS2F6ZFdaSEJWUjNSamNIcG9hREJ3TWxSNFpFRmFURkJCVG5SSk5YZ3djQ3R6YW1oc1JGVkJka0kwVlVWdlExTldOV0pQY0U0eU1FdHNRV1JvT0RnMVdBbzRMMVp2YjB4c2RsTXpTaXRTYm5WTGNEUlZaRU55YjNOM2JreGxUR3czU21Fd1JHTXZla2xZY1hwRGFGQnRLMUF3SzJZeGFHeFBhMmh5ZG5ONlJVNVRDblJVVWpkcVMxWjZMMk12ZDNGeWJpOUZiM040YmsxMWQwMVRSSFpvVjNnMWJtMUdSQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMGQ4OGViMGItNjQzZS00MzBhLTk4NWItNTY0ZjMxZTNhYWE0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiUmNDdHl4eFFyUTdHbm04RG9DT0E2RGk4TDJSdHg5N1dyM0g3VnNvWkQ3ZlBtbVhGbnJualZnRg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1428" + - "2590" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:44:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -370,7 +438,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f2a64a1-3036-410c-ac5a-c49cf1a1d1b0 + - 5728cf5c-7ed4-4258-8a63-43fa95bcf605 status: 200 OK code: 200 duration: "" @@ -381,19 +449,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3137de7-572a-48e4-921c-20cbd352be1b method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsdXN0ZXJjb25maWdtaW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxRVozcE5WRVV5VFdwRk1FMXNiMWhFVkUxNlRVUm5lazFVUlRKTmFrVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRVVlBDbUp2Ylc4NVdEWXJNemxJUVdGQmQxZGtVV0ZNZVhOU2JtbE9TazlOVUVwUmJWcFVPVEU1ZURKSVQwZGxZeXRxTDI1TVNETlhVMmd6YVhablZHSnBSWG9LTlVkU1ZVWjZSWE13Unl0a01YSmtWVGc0Ym5CYVZXcEZXRWhVSzA0eVVrNXJabUpIZERaUVZ6STBXRVoxV25CNlNGRnFNelUxV0U5blowNUhhMFF5VEFwelNESXlPWE5EY2xSMk1tTnRTRGxXUjFsYVZWRXdkbGxIYmxOVE1EVm1hMlJQVUN0SGQwOW9jVEp1YzBSWlprUnNXVlp1ZEVSeWJ6aE1RbUYzT0hwbENsVkROak5IU25ad2VtZE5ielV4Y25jM1VYVllTRXhhUldsNmIzVlVUMEU1Y3pCc2FtMXZSVGRRTVdzNGJWWnBkV1pRYlVGbU5pdFpiSEJFYUc0MFlUa0tkVlZyZVZZNFUySndlbk5zVWxZeFVHeHNSM00zY2xab2QzZ3ZaMHRGVkRGR1FWSTRXbGN2VW1oUk4wVjVVVTl2TjNwWWIwSm5VQ3RoU0hKSFJ6ZzJUZ3BUU1Uxd01XdzBkVk42YmpsR01tZHRPWGhGUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpLWXpWeVkwZEpla3BZWWpoU1RtdDRUa3MyV2tkYWJtWXJiR3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCVXpkQ1pHOW5kR2wwYjJGNFkwOU5PVFJVVG1sVmNIY3ZObkZGTkhaSFNIUkNZamgzUWxKcFdrNVFkaTgwYmtnNFpBcG5VRXhrT0c5V1EwZE5VelZ0VUdaVlVXSXlZVkZVVFd3ck1rSTFPR3N2YzNabFlVVjVWMGh2Um5OSlpsRnBOV3hrTmtGQmVWTjRNWE5rYjJWM04wOXBDa3h3YmtKa2JEWnhlRkEyTDBVNGJtRXJRVXhGT0RSeVVtUXJTbk5VZDFkQlRqSmhlVmRDYW5nMFpuVkZOMVpyZDNoMlJIQTRSR3RvYW1SWFJWSkpiWEFLVlZaTVlqWnhjSFZTVUhZeVNWVnFZMFJZY0RGUWVXOUJXVXB4U1UxM1lVWlplVXR5T1N0UFVYSk5jVTlyU3paME9EUXJVVVJJYWxwVUwzQk1TRFpETlFwSGRIRnhiMGROU1U1TVNtaG5iVWRsYjFVclZUUXJWR05NV0ZsRFJuZzVORVozYW5seWRFMDVNVTlOY1hWdmQzQkdTR3R1YWpWV1FXMWpSalpXZDNaQ0NtVmhNemhuTUhkWWNHMWxZVFJSUzB0R1V6TmxlbWh5VmxGcVdsa3ZjMmRzZDJrellnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8yZjgyZTZmNS1mMmQ2LTQ3ZWItOWVlZC0yNzMxN2Y1Y2YyMTcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2x1c3RlcmNvbmZpZ21pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsdXN0ZXJjb25maWdtaW5pbWFsIgogICAgdXNlcjogY2x1c3RlcmNvbmZpZ21pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbHVzdGVyY29uZmlnbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJjb25maWdtaW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXaVEwODJSTTdSb1VlRUh5Z0trVWs3M0x1NWlqNHFPNndVTGtmaVBlMzF3cWtRWDI5TUZkdHFXbA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:44:13.182219Z","dhcp_enabled":true,"id":"f3137de7-572a-48e4-921c-20cbd352be1b","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:44:13.182219Z","id":"00541e5c-5a6f-48fe-bb5e-4b507b0d066e","subnet":"172.16.20.0/22","updated_at":"2023-10-18T16:44:13.182219Z"},{"created_at":"2023-10-18T16:44:13.182219Z","id":"1e83ba5a-7195-4b12-bc69-f89a59bcb25a","subnet":"fd63:256c:45f7:11b4::/64","updated_at":"2023-10-18T16:44:13.182219Z"}],"tags":[],"updated_at":"2023-10-18T16:44:13.182219Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2652" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:44:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -403,7 +471,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62606ea3-eab0-4b04-a927-8e1d7736694a + - 9aa83ad5-2f72-431c-a05b-bc07a32e33ab status: 200 OK code: 200 duration: "" @@ -414,19 +482,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:42.397631Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:15.566447Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1428" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:44:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -436,7 +504,73 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98287a18-8894-4df3-8854-e1fe7eefa6eb + - c45f4909-ea4a-4db3-974a-113b849075ca + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUlJlRTVXYjFoRVZFMTZUVlJCZUU1NlJUSk9SRkY0VGxadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJVRVJKQ21sVmJEbEZNV0ZTUlRGcVowbEtXR1pJVGtKbFdXdFJUM1JYYUVaMVNWUjFSVU5WT1VwMWJuRnpha1p5YnpCYWFpdHBXRlJYTjNjcmRuRTJaemRFTlUwS2NYWTRTMmQxYTBreWJrSTVMMUoxZHpCelYxWXJOakpFYlhsaFdISlpTM2RPU21OeFJ6aFNOM0E0VjJSTFltaDNWU3QzTDNFeWRXOU1abVZ0TlUxWk13cHJTbmhwV1VWclNqSk5aRGswUjBwT2RreDZiRFIxUTNGbWRGbFFkSGxCTmxZMFkyZzNWR2xoTkd4Rk5HY3dOVE5EZGxKSk0wZDJPSEFyWWs1c1NIWTJDalJFZDA1SVpVWndNRWwxU0c5dVdWWnFZMjR4WVVOVk5qUXhRbGRZU1RJeWJUZzJkblEyYlVzdmVreFhRalozZDFkQldXRkdlVzlSVVRSeVdHcDZPVmdLT0ZwU1RtRnJTamxGUTJkSVpXMHhOREJMTHlzMlVYbDRSRlpHUkdsaE1ISjBUMDlvV0dsRFpVTlRUMkpVTkhocVlWUkVUakpyYkZrMlpFb3ZURFYyV2dwMmNrRXJUVEpPYWtOUGNqWklVMm96VkRoelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUVNuZEVZMFV2VVZkU1ZXYzJPRlZCVjFvdk5qaEVMMHR2UjJsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRGVHWkJhM0p6VmtGdVowZHBPWGhUYm5wRGNUTXlZVVpET1RSM01XSnRVMjVZTkZaQ1VXaG1jVTV3YUhkbFUzaFRRUXAzWW0xWVpUSmpXVXBuTTFKQ2FHWXpVRE5FWlhGMGJYSkhlRnB4ZFU5SlNGUXJaalJ1UWxWb2FVVk9aM0JIZDIxMFMweHRTVFZ4Um1vM1oxRlNiRUZJQ21GME1FVlBTMWROVkZkQ2FHNW5hazFCVFRBM2MxWjZRMVpVUVZJd05FdDZlbk5EYUdkSmJHRkJOakJTU1ZrelVtNXlNM0p5ZEdSQkwyMVRTalpyT1ZRS2F6ZFdaSEJWUjNSamNIcG9hREJ3TWxSNFpFRmFURkJCVG5SSk5YZ3djQ3R6YW1oc1JGVkJka0kwVlVWdlExTldOV0pQY0U0eU1FdHNRV1JvT0RnMVdBbzRMMVp2YjB4c2RsTXpTaXRTYm5WTGNEUlZaRU55YjNOM2JreGxUR3czU21Fd1JHTXZla2xZY1hwRGFGQnRLMUF3SzJZeGFHeFBhMmh5ZG5ONlJVNVRDblJVVWpkcVMxWjZMMk12ZDNGeWJpOUZiM040YmsxMWQwMVRSSFpvVjNnMWJtMUdSQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMGQ4OGViMGItNjQzZS00MzBhLTk4NWItNTY0ZjMxZTNhYWE0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiUmNDdHl4eFFyUTdHbm04RG9DT0E2RGk4TDJSdHg5N1dyM0g3VnNvWkQ3ZlBtbVhGbnJualZnRg==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2590" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4f66d3de-9573-4a66-b70f-5cc26d8d0c9b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:15.566447Z","upgrade_available":true,"version":"1.27.6"}' + headers: + Content-Length: + - "1499" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6970f4e6-1b6c-4242-949f-acebfd24895d status: 200 OK code: 200 duration: "" @@ -449,19 +583,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: PATCH response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:46.878904223Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:20.978398598Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1426" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:44:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -471,7 +605,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1ec0fc8-935a-45cf-8d85-a3fee7c0f365 + - 04cc535a-9696-4302-abd2-28f509f1db6b status: 200 OK code: 200 duration: "" @@ -482,19 +616,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:46.878904Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:20.978399Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1423" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:44:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -504,7 +638,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d986d6ad-393f-4d96-b186-eecd60123155 + - cfc86c31-18a0-4264-83b7-f6716d299c84 status: 200 OK code: 200 duration: "" @@ -515,19 +649,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:47.987842Z","upgrade_available":true,"version":"1.27.4"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:22.097525Z","upgrade_available":true,"version":"1.27.6"}' headers: Content-Length: - - "1428" + - "1499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:51 GMT + - Wed, 18 Oct 2023 16:44:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -537,12 +671,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5b6637a-3604-4918-9e30-3e54d09d743b + - ca6d0a96-4054-426d-af92-fea6eb34940a status: 200 OK code: 200 duration: "" - request: - body: '{"version":"1.28.0","upgrade_pools":true}' + body: '{"version":"1.28.2","upgrade_pools":true}' form: {} headers: Content-Type: @@ -550,19 +684,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217/upgrade + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4/upgrade method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:52.029672166Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:26.185596296Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1427" + - "1498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:52 GMT + - Wed, 18 Oct 2023 16:44:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -572,7 +706,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab46d9b4-083a-4f09-8d31-bd92c2288143 + - f037ecea-747b-486c-b7ce-4719ec5fd90b status: 200 OK code: 200 duration: "" @@ -583,19 +717,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:52.029672Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:26.185596Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1424" + - "1495" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:52 GMT + - Wed, 18 Oct 2023 16:44:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -605,7 +739,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a16afca6-9845-4fa2-95ff-403bdaa5c692 + - bccdbf99-ac92-4c5a-be3f-9a9d3526de4f status: 200 OK code: 200 duration: "" @@ -616,19 +750,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:53.115678Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:27.301466Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1429" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:57 GMT + - Wed, 18 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -638,7 +772,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04b4a1fa-2325-4415-8a0b-59c32fcdb99e + - 21d3bf27-33b7-4d3b-8cf9-5e1cde8bfb04 status: 200 OK code: 200 duration: "" @@ -649,19 +783,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:53.115678Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:27.301466Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1429" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:57 GMT + - Wed, 18 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -671,7 +805,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14e2921f-a9c6-4960-afba-aafa427fbbc6 + - 2b7d1e5a-d574-4a20-be8c-a7b559ba334a status: 200 OK code: 200 duration: "" @@ -682,19 +816,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsdXN0ZXJjb25maWdtaW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxRVozcE5WRVV5VFdwRk1FMXNiMWhFVkUxNlRVUm5lazFVUlRKTmFrVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRVVlBDbUp2Ylc4NVdEWXJNemxJUVdGQmQxZGtVV0ZNZVhOU2JtbE9TazlOVUVwUmJWcFVPVEU1ZURKSVQwZGxZeXRxTDI1TVNETlhVMmd6YVhablZHSnBSWG9LTlVkU1ZVWjZSWE13Unl0a01YSmtWVGc0Ym5CYVZXcEZXRWhVSzA0eVVrNXJabUpIZERaUVZ6STBXRVoxV25CNlNGRnFNelUxV0U5blowNUhhMFF5VEFwelNESXlPWE5EY2xSMk1tTnRTRGxXUjFsYVZWRXdkbGxIYmxOVE1EVm1hMlJQVUN0SGQwOW9jVEp1YzBSWlprUnNXVlp1ZEVSeWJ6aE1RbUYzT0hwbENsVkROak5IU25ad2VtZE5ielV4Y25jM1VYVllTRXhhUldsNmIzVlVUMEU1Y3pCc2FtMXZSVGRRTVdzNGJWWnBkV1pRYlVGbU5pdFpiSEJFYUc0MFlUa0tkVlZyZVZZNFUySndlbk5zVWxZeFVHeHNSM00zY2xab2QzZ3ZaMHRGVkRGR1FWSTRXbGN2VW1oUk4wVjVVVTl2TjNwWWIwSm5VQ3RoU0hKSFJ6ZzJUZ3BUU1Uxd01XdzBkVk42YmpsR01tZHRPWGhGUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpLWXpWeVkwZEpla3BZWWpoU1RtdDRUa3MyV2tkYWJtWXJiR3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCVXpkQ1pHOW5kR2wwYjJGNFkwOU5PVFJVVG1sVmNIY3ZObkZGTkhaSFNIUkNZamgzUWxKcFdrNVFkaTgwYmtnNFpBcG5VRXhrT0c5V1EwZE5VelZ0VUdaVlVXSXlZVkZVVFd3ck1rSTFPR3N2YzNabFlVVjVWMGh2Um5OSlpsRnBOV3hrTmtGQmVWTjRNWE5rYjJWM04wOXBDa3h3YmtKa2JEWnhlRkEyTDBVNGJtRXJRVXhGT0RSeVVtUXJTbk5VZDFkQlRqSmhlVmRDYW5nMFpuVkZOMVpyZDNoMlJIQTRSR3RvYW1SWFJWSkpiWEFLVlZaTVlqWnhjSFZTVUhZeVNWVnFZMFJZY0RGUWVXOUJXVXB4U1UxM1lVWlplVXR5T1N0UFVYSk5jVTlyU3paME9EUXJVVVJJYWxwVUwzQk1TRFpETlFwSGRIRnhiMGROU1U1TVNtaG5iVWRsYjFVclZUUXJWR05NV0ZsRFJuZzVORVozYW5seWRFMDVNVTlOY1hWdmQzQkdTR3R1YWpWV1FXMWpSalpXZDNaQ0NtVmhNemhuTUhkWWNHMWxZVFJSUzB0R1V6TmxlbWh5VmxGcVdsa3ZjMmRzZDJrellnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8yZjgyZTZmNS1mMmQ2LTQ3ZWItOWVlZC0yNzMxN2Y1Y2YyMTcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2x1c3RlcmNvbmZpZ21pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsdXN0ZXJjb25maWdtaW5pbWFsIgogICAgdXNlcjogY2x1c3RlcmNvbmZpZ21pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbHVzdGVyY29uZmlnbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJjb25maWdtaW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXaVEwODJSTTdSb1VlRUh5Z0trVWs3M0x1NWlqNHFPNndVTGtmaVBlMzF3cWtRWDI5TUZkdHFXbA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUlJlRTVXYjFoRVZFMTZUVlJCZUU1NlJUSk9SRkY0VGxadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJVRVJKQ21sVmJEbEZNV0ZTUlRGcVowbEtXR1pJVGtKbFdXdFJUM1JYYUVaMVNWUjFSVU5WT1VwMWJuRnpha1p5YnpCYWFpdHBXRlJYTjNjcmRuRTJaemRFTlUwS2NYWTRTMmQxYTBreWJrSTVMMUoxZHpCelYxWXJOakpFYlhsaFdISlpTM2RPU21OeFJ6aFNOM0E0VjJSTFltaDNWU3QzTDNFeWRXOU1abVZ0TlUxWk13cHJTbmhwV1VWclNqSk5aRGswUjBwT2RreDZiRFIxUTNGbWRGbFFkSGxCTmxZMFkyZzNWR2xoTkd4Rk5HY3dOVE5EZGxKSk0wZDJPSEFyWWs1c1NIWTJDalJFZDA1SVpVWndNRWwxU0c5dVdWWnFZMjR4WVVOVk5qUXhRbGRZU1RJeWJUZzJkblEyYlVzdmVreFhRalozZDFkQldXRkdlVzlSVVRSeVdHcDZPVmdLT0ZwU1RtRnJTamxGUTJkSVpXMHhOREJMTHlzMlVYbDRSRlpHUkdsaE1ISjBUMDlvV0dsRFpVTlRUMkpVTkhocVlWUkVUakpyYkZrMlpFb3ZURFYyV2dwMmNrRXJUVEpPYWtOUGNqWklVMm96VkRoelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUVNuZEVZMFV2VVZkU1ZXYzJPRlZCVjFvdk5qaEVMMHR2UjJsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRGVHWkJhM0p6VmtGdVowZHBPWGhUYm5wRGNUTXlZVVpET1RSM01XSnRVMjVZTkZaQ1VXaG1jVTV3YUhkbFUzaFRRUXAzWW0xWVpUSmpXVXBuTTFKQ2FHWXpVRE5FWlhGMGJYSkhlRnB4ZFU5SlNGUXJaalJ1UWxWb2FVVk9aM0JIZDIxMFMweHRTVFZ4Um1vM1oxRlNiRUZJQ21GME1FVlBTMWROVkZkQ2FHNW5hazFCVFRBM2MxWjZRMVpVUVZJd05FdDZlbk5EYUdkSmJHRkJOakJTU1ZrelVtNXlNM0p5ZEdSQkwyMVRTalpyT1ZRS2F6ZFdaSEJWUjNSamNIcG9hREJ3TWxSNFpFRmFURkJCVG5SSk5YZ3djQ3R6YW1oc1JGVkJka0kwVlVWdlExTldOV0pQY0U0eU1FdHNRV1JvT0RnMVdBbzRMMVp2YjB4c2RsTXpTaXRTYm5WTGNEUlZaRU55YjNOM2JreGxUR3czU21Fd1JHTXZla2xZY1hwRGFGQnRLMUF3SzJZeGFHeFBhMmh5ZG5ONlJVNVRDblJVVWpkcVMxWjZMMk12ZDNGeWJpOUZiM040YmsxMWQwMVRSSFpvVjNnMWJtMUdSQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMGQ4OGViMGItNjQzZS00MzBhLTk4NWItNTY0ZjMxZTNhYWE0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiUmNDdHl4eFFyUTdHbm04RG9DT0E2RGk4TDJSdHg5N1dyM0g3VnNvWkQ3ZlBtbVhGbnJualZnRg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2652" + - "2590" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:57 GMT + - Wed, 18 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -704,7 +838,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3e29a8e-87c7-4f67-a978-890fc1e8d466 + - 09a59a36-bc2d-4f7c-bbe8-beb5818bd489 status: 200 OK code: 200 duration: "" @@ -715,19 +849,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:53.115678Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:27.301466Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1429" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:57 GMT + - Wed, 18 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -737,7 +871,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c24e628-57d3-4e76-873f-077ff966a15c + - 3f94ca6f-deea-4d06-8495-51850f820e98 status: 200 OK code: 200 duration: "" @@ -748,19 +882,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3137de7-572a-48e4-921c-20cbd352be1b method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:53.115678Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:44:13.182219Z","dhcp_enabled":true,"id":"f3137de7-572a-48e4-921c-20cbd352be1b","name":"test-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:44:13.182219Z","id":"00541e5c-5a6f-48fe-bb5e-4b507b0d066e","subnet":"172.16.20.0/22","updated_at":"2023-10-18T16:44:13.182219Z"},{"created_at":"2023-10-18T16:44:13.182219Z","id":"1e83ba5a-7195-4b12-bc69-f89a59bcb25a","subnet":"fd63:256c:45f7:11b4::/64","updated_at":"2023-10-18T16:44:13.182219Z"}],"tags":[],"updated_at":"2023-10-18T16:44:13.182219Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1429" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:57 GMT + - Wed, 18 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -770,7 +904,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73c31fa2-7de6-4686-961c-bd1b6e51aa00 + - 524947ad-60f0-4c88-ad40-be567ed80927 status: 200 OK code: 200 duration: "" @@ -781,19 +915,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsdXN0ZXJjb25maWdtaW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxRVozcE5WRVV5VFdwRk1FMXNiMWhFVkUxNlRVUm5lazFVUlRKTmFrVXdUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRVVlBDbUp2Ylc4NVdEWXJNemxJUVdGQmQxZGtVV0ZNZVhOU2JtbE9TazlOVUVwUmJWcFVPVEU1ZURKSVQwZGxZeXRxTDI1TVNETlhVMmd6YVhablZHSnBSWG9LTlVkU1ZVWjZSWE13Unl0a01YSmtWVGc0Ym5CYVZXcEZXRWhVSzA0eVVrNXJabUpIZERaUVZ6STBXRVoxV25CNlNGRnFNelUxV0U5blowNUhhMFF5VEFwelNESXlPWE5EY2xSMk1tTnRTRGxXUjFsYVZWRXdkbGxIYmxOVE1EVm1hMlJQVUN0SGQwOW9jVEp1YzBSWlprUnNXVlp1ZEVSeWJ6aE1RbUYzT0hwbENsVkROak5IU25ad2VtZE5ielV4Y25jM1VYVllTRXhhUldsNmIzVlVUMEU1Y3pCc2FtMXZSVGRRTVdzNGJWWnBkV1pRYlVGbU5pdFpiSEJFYUc0MFlUa0tkVlZyZVZZNFUySndlbk5zVWxZeFVHeHNSM00zY2xab2QzZ3ZaMHRGVkRGR1FWSTRXbGN2VW1oUk4wVjVVVTl2TjNwWWIwSm5VQ3RoU0hKSFJ6ZzJUZ3BUU1Uxd01XdzBkVk42YmpsR01tZHRPWGhGUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpLWXpWeVkwZEpla3BZWWpoU1RtdDRUa3MyV2tkYWJtWXJiR3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCVXpkQ1pHOW5kR2wwYjJGNFkwOU5PVFJVVG1sVmNIY3ZObkZGTkhaSFNIUkNZamgzUWxKcFdrNVFkaTgwYmtnNFpBcG5VRXhrT0c5V1EwZE5VelZ0VUdaVlVXSXlZVkZVVFd3ck1rSTFPR3N2YzNabFlVVjVWMGh2Um5OSlpsRnBOV3hrTmtGQmVWTjRNWE5rYjJWM04wOXBDa3h3YmtKa2JEWnhlRkEyTDBVNGJtRXJRVXhGT0RSeVVtUXJTbk5VZDFkQlRqSmhlVmRDYW5nMFpuVkZOMVpyZDNoMlJIQTRSR3RvYW1SWFJWSkpiWEFLVlZaTVlqWnhjSFZTVUhZeVNWVnFZMFJZY0RGUWVXOUJXVXB4U1UxM1lVWlplVXR5T1N0UFVYSk5jVTlyU3paME9EUXJVVVJJYWxwVUwzQk1TRFpETlFwSGRIRnhiMGROU1U1TVNtaG5iVWRsYjFVclZUUXJWR05NV0ZsRFJuZzVORVozYW5seWRFMDVNVTlOY1hWdmQzQkdTR3R1YWpWV1FXMWpSalpXZDNaQ0NtVmhNemhuTUhkWWNHMWxZVFJSUzB0R1V6TmxlbWh5VmxGcVdsa3ZjMmRzZDJrellnb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly8yZjgyZTZmNS1mMmQ2LTQ3ZWItOWVlZC0yNzMxN2Y1Y2YyMTcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AY2x1c3RlcmNvbmZpZ21pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogImNsdXN0ZXJjb25maWdtaW5pbWFsIgogICAgdXNlcjogY2x1c3RlcmNvbmZpZ21pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBjbHVzdGVyY29uZmlnbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJjb25maWdtaW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXaVEwODJSTTdSb1VlRUh5Z0trVWs3M0x1NWlqNHFPNndVTGtmaVBlMzF3cWtRWDI5TUZkdHFXbA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:27.301466Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2652" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:57 GMT + - Wed, 18 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -803,7 +937,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbd4c190-2c5b-4005-abea-48517042c04d + - c50ae433-8704-4d61-baa5-abd4e59bd035 status: 200 OK code: 200 duration: "" @@ -814,19 +948,85 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUlJlRTVXYjFoRVZFMTZUVlJCZUU1NlJUSk9SRkY0VGxadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJVRVJKQ21sVmJEbEZNV0ZTUlRGcVowbEtXR1pJVGtKbFdXdFJUM1JYYUVaMVNWUjFSVU5WT1VwMWJuRnpha1p5YnpCYWFpdHBXRlJYTjNjcmRuRTJaemRFTlUwS2NYWTRTMmQxYTBreWJrSTVMMUoxZHpCelYxWXJOakpFYlhsaFdISlpTM2RPU21OeFJ6aFNOM0E0VjJSTFltaDNWU3QzTDNFeWRXOU1abVZ0TlUxWk13cHJTbmhwV1VWclNqSk5aRGswUjBwT2RreDZiRFIxUTNGbWRGbFFkSGxCTmxZMFkyZzNWR2xoTkd4Rk5HY3dOVE5EZGxKSk0wZDJPSEFyWWs1c1NIWTJDalJFZDA1SVpVWndNRWwxU0c5dVdWWnFZMjR4WVVOVk5qUXhRbGRZU1RJeWJUZzJkblEyYlVzdmVreFhRalozZDFkQldXRkdlVzlSVVRSeVdHcDZPVmdLT0ZwU1RtRnJTamxGUTJkSVpXMHhOREJMTHlzMlVYbDRSRlpHUkdsaE1ISjBUMDlvV0dsRFpVTlRUMkpVTkhocVlWUkVUakpyYkZrMlpFb3ZURFYyV2dwMmNrRXJUVEpPYWtOUGNqWklVMm96VkRoelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUVNuZEVZMFV2VVZkU1ZXYzJPRlZCVjFvdk5qaEVMMHR2UjJsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRGVHWkJhM0p6VmtGdVowZHBPWGhUYm5wRGNUTXlZVVpET1RSM01XSnRVMjVZTkZaQ1VXaG1jVTV3YUhkbFUzaFRRUXAzWW0xWVpUSmpXVXBuTTFKQ2FHWXpVRE5FWlhGMGJYSkhlRnB4ZFU5SlNGUXJaalJ1UWxWb2FVVk9aM0JIZDIxMFMweHRTVFZ4Um1vM1oxRlNiRUZJQ21GME1FVlBTMWROVkZkQ2FHNW5hazFCVFRBM2MxWjZRMVpVUVZJd05FdDZlbk5EYUdkSmJHRkJOakJTU1ZrelVtNXlNM0p5ZEdSQkwyMVRTalpyT1ZRS2F6ZFdaSEJWUjNSamNIcG9hREJ3TWxSNFpFRmFURkJCVG5SSk5YZ3djQ3R6YW1oc1JGVkJka0kwVlVWdlExTldOV0pQY0U0eU1FdHNRV1JvT0RnMVdBbzRMMVp2YjB4c2RsTXpTaXRTYm5WTGNEUlZaRU55YjNOM2JreGxUR3czU21Fd1JHTXZla2xZY1hwRGFGQnRLMUF3SzJZeGFHeFBhMmh5ZG5ONlJVNVRDblJVVWpkcVMxWjZMMk12ZDNGeWJpOUZiM040YmsxMWQwMVRSSFpvVjNnMWJtMUdSQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMGQ4OGViMGItNjQzZS00MzBhLTk4NWItNTY0ZjMxZTNhYWE0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbWluaW1hbAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1taW5pbWFsCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiUmNDdHl4eFFyUTdHbm04RG9DT0E2RGk4TDJSdHg5N1dyM0g3VnNvWkQ3ZlBtbVhGbnJualZnRg==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2590" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fedcd10a-b130-41f0-af9d-de0ddcc8f968 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4?with_additional_resources=true method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:57.820462570Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:32.520482626Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1498" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dfa76523-22fa-46ae-aca8-d83fe1e69863 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:32.520483Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1427" + - "1495" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:57 GMT + - Wed, 18 Oct 2023 16:44:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -836,7 +1036,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b43ceb20-8baf-4596-a6fb-9dac43e462a1 + - 9fd3e09c-9d42-44bc-bc20-fe79d10291e6 status: 200 OK code: 200 duration: "" @@ -847,19 +1047,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://2f82e6f5-f2d6-47eb-9eed-27317f5cf217.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:21:40.757422Z","created_at":"2023-09-01T16:21:40.757422Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.2f82e6f5-f2d6-47eb-9eed-27317f5cf217.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","ingress":"none","name":"ClusterConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-09-01T16:21:57.820463Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://0d88eb0b-643e-430a-985b-564f31e3aaa4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:44:14.065550Z","created_at":"2023-10-18T16:44:14.065550Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.0d88eb0b-643e-430a-985b-564f31e3aaa4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","ingress":"none","name":"test-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"f3137de7-572a-48e4-921c-20cbd352be1b","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:44:32.520483Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1424" + - "1495" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:58 GMT + - Wed, 18 Oct 2023 16:44:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -869,7 +1069,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d12e1b99-9357-4e3e-8b50-4ba7c0d16d1b + - 4226c4c5-6ebc-47af-9fd6-516d42ede948 status: 200 OK code: 200 duration: "" @@ -880,10 +1080,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","type":"not_found"}' headers: Content-Length: - "128" @@ -892,7 +1092,40 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:03 GMT + - Wed, 18 Oct 2023 16:44:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 502d6e61-723e-44a8-97de-23d091e5fd41 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3137de7-572a-48e4-921c-20cbd352be1b + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"f3137de7-572a-48e4-921c-20cbd352be1b","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -902,7 +1135,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ced39e2-dcfa-47bb-b9e8-cebf1d4f5d1b + - f61d7c8b-b0e3-4866-b561-4c310f1ed1d1 status: 404 Not Found code: 404 duration: "" @@ -913,10 +1146,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2f82e6f5-f2d6-47eb-9eed-27317f5cf217 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0d88eb0b-643e-430a-985b-564f31e3aaa4 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"2f82e6f5-f2d6-47eb-9eed-27317f5cf217","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"0d88eb0b-643e-430a-985b-564f31e3aaa4","type":"not_found"}' headers: Content-Length: - "128" @@ -925,7 +1158,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:03 GMT + - Wed, 18 Oct 2023 16:44:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -935,7 +1168,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86efa3da-dbb3-44b7-8b3f-5d6e9fee6c35 + - 3b8730a7-e33a-4bf7-a4e4-47023e2a70f7 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-multicloud.cassette.yaml b/scaleway/testdata/k8s-cluster-multicloud.cassette.yaml index 30b1053ab6..b82cf5edf1 100644 --- a/scaleway/testdata/k8s-cluster-multicloud.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-multicloud.cassette.yaml @@ -12,11 +12,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e04a3bcc-0b58-4b5f-84d8-26517fb6a477 + - 0928f880-56c0-48b7-984f-2e168d9a8580 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud","name":"test-multicloud","description":"","tags":null,"version":"1.28.0","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud","name":"test-multicloud","description":"","tags":null,"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' form: {} headers: Content-Type: @@ -50,16 +50,16 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457058Z","created_at":"2023-09-01T16:15:56.725457058Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738627858Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895128864Z","created_at":"2023-10-18T16:43:35.895128864Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088111Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1380" + - "1423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:56 GMT + - Wed, 18 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +69,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2c459d1-55cf-44f0-baf0-5159dcffc362 + - a19c5add-fdd9-4614-8560-beab59a0aa1e status: 200 OK code: 200 duration: "" @@ -80,19 +80,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:56 GMT + - Wed, 18 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,7 +102,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6b05635-794a-4eaa-bd1c-134f2c24fed2 + - 48cfb20c-e7ff-4b69-8a1f-913430122dbd status: 200 OK code: 200 duration: "" @@ -113,19 +113,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:01 GMT + - Wed, 18 Oct 2023 16:43:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -135,7 +135,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41f739ce-ca7b-4f77-a07a-d0ddd9cc07db + - 82dd2ab4-be28-4e38-b70d-eb9a1f9d2351 status: 200 OK code: 200 duration: "" @@ -146,19 +146,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:06 GMT + - Wed, 18 Oct 2023 16:43:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +168,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4861308f-9a1a-400a-907e-d7c5b89a4482 + - 640caf83-cf8f-401c-8a1c-841218ed8917 status: 200 OK code: 200 duration: "" @@ -179,19 +179,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:12 GMT + - Wed, 18 Oct 2023 16:43:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,7 +201,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43f66833-bf88-4619-aa47-e474dcc4a795 + - 9638539f-21b0-4810-baf0-bf18c8265711 status: 200 OK code: 200 duration: "" @@ -212,19 +212,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:17 GMT + - Wed, 18 Oct 2023 16:43:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,7 +234,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5bb982f-1129-465b-a41d-042c3f18e675 + - 83d33585-1d86-4af4-8a6e-aaa03f09e104 status: 200 OK code: 200 duration: "" @@ -245,19 +245,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:22 GMT + - Wed, 18 Oct 2023 16:44:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -267,7 +267,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f273a39e-cbbf-4977-b963-11789fe92c97 + - 062e30f4-b4f8-4929-b6e8-0ae67c5b72b3 status: 200 OK code: 200 duration: "" @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:27 GMT + - Wed, 18 Oct 2023 16:44:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35a2bc9e-5764-4934-b0b8-4a020b5d2a12 + - 3c2c8c8e-e93d-4b55-a3bd-a9e65bfd16e3 status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:32 GMT + - Wed, 18 Oct 2023 16:44:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1caf2aa1-e30e-41e1-a0b4-df07cd374be9 + - d98c00b4-2ae7-462b-a006-b5461147b391 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:37 GMT + - Wed, 18 Oct 2023 16:44:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ccb0b51-80c6-4476-9c76-73d7f3d4b17e + - 6cdc29f4-e82d-410d-afd5-30aad8f1ce82 status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:42 GMT + - Wed, 18 Oct 2023 16:44:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2fd0602-3530-4225-bb39-ee1f44217117 + - fb94000c-97b5-4f01-b4ce-59e2cba93aa6 status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:47 GMT + - Wed, 18 Oct 2023 16:44:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,7 +432,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5049967-c08e-415c-91a5-f8d99a0d3a2c + - 509af00d-8646-4450-b630-02112f21650c status: 200 OK code: 200 duration: "" @@ -443,19 +443,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:52 GMT + - Wed, 18 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -465,7 +465,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - babacf35-b3b2-4914-8738-bef1afa1fb02 + - 55d9dbef-c30e-47ec-87a6-02ee9fe03eab status: 200 OK code: 200 duration: "" @@ -476,19 +476,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:57 GMT + - Wed, 18 Oct 2023 16:44:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -498,7 +498,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74cc6093-17a4-4e13-84fb-fbd1d83865d2 + - 7cabd5f3-2457-4c2a-84e8-99eb41bee7f3 status: 200 OK code: 200 duration: "" @@ -509,19 +509,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:43:35.903088Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:02 GMT + - Wed, 18 Oct 2023 16:44:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -531,7 +531,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e2f7089-09ca-43fd-b5ae-ef0ee8adef8a + - 3e444a67-f35f-41fb-8719-2293ed49f8a0 status: 200 OK code: 200 duration: "" @@ -542,19 +542,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:44:42.914178Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:07 GMT + - Wed, 18 Oct 2023 16:44:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -564,7 +564,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34cb2cdc-1f21-4d8d-9fc6-5b81d6b0046a + - f94f34ad-95c0-4d5b-8728-777ff69472f0 status: 200 OK code: 200 duration: "" @@ -575,19 +575,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:44:42.914178Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:12 GMT + - Wed, 18 Oct 2023 16:44:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -597,7 +597,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf6b4db7-dad1-43c9-9288-53ff7313729c + - 339e1419-ca0b-4523-8545-437fbab720f5 status: 200 OK code: 200 duration: "" @@ -608,19 +608,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbXVsdGljbG91ZCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUk5lazR4YjFoRVZFMTZUVlJCZUU1NlJUSk9SRTE2VGpGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMFJYQ2toRmFFdExNV3BSV25OYWFFdHdPRTlIUWpaWVQwTjVXREZuYUU5clZ6VlFVWGRoVGtsMGIwVnNNbk16Yms1aFR5dEdNMjl6UjA1eWNXZHJURnBNWnpnS1VUUkhkV3haTURobU5ERmlhRTF4VkVOd2FpdDBObGhYSzB4blUwaHpOSFpyWjNKTmFWcDNNRzE1Tm1GdmEzQnlOR3hwTHpCUlpWTnRiR2xZU25kNlNBcE9kSEJVYVVZMkwzVXhPR1ZaVTNvMFEydE9VRTVPTlRaUU5taGlhVFpsYUVGUlVXRXhTSFp3WVVKemRqaG1TMFpYYUhsS1VVWjZTVkJXWTFOak5sVXlDbXRHY0RRM1RWVTROREIwZFU1d1VISklXa1pQYmxWM2NYaEdSREpyU21KV1VWaDZhV1ptVDA0MWEyd3dXVVZLV1ZCNWRsZHFiMVJGU25GVmVEVnVSbFVLTVZWd05YaExRVzFFUVZKcVkwRk1TRFJOZDFscVNuVnBkVVJ2U2pOdWVTOXJjVlJwZVUxRGVYbGpSMGxSVkUxaE56WnhVR2ROU0d0aWNtdFpaRVl3UlFvd1VFOHlUMUpZY1dKUlpHUjRZbk5IT1ZwelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRWFHNUJibTFPYUVGa2IwTnhTbXhHZDI5RE16RjZOa0o1VFZaTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQlRtcHRRakV6VGtORlZUUmpVRUZXWml0Wk9VbEdWRTVPVmxGRFkxaGhSMGxSUVVRek5WQlFNa0V3VEcwNVpGRkxjQXBQWVdsc1pEaG5hMWxsYnpSclJXMDFhWFF3YTBOTlVHVkhWa2t3VUU5RFdFYzBNR2xGV0dGWlVIb3JVRGhXUTBoeFkzUkZaRkZTVjFGV09HMTVhWFozQ2tneGR6WlJhRWhEYVhoamRUaElMMDRyVFhoUWRVRTFVRGRJY0dSYVIzWm5TR1ZZYURJeWNXRlFkbE15WVZaV1UzZGFhMHhOV0ZsMVFscE5SR1Z3U2tJS2JHa3ZPWFpUY201dFltUk5NbXR5YnpFNWNrUnlRMFZCVEZwNk9FOXpRbWd6T1hCTVRFWmFhbWRoWW1GRVN6QkdMelZUUnpkcVdYWlFTbm8zTHpKSFZ3cHZOR3hMVGtKSk5Yb3hkRzEzTkRBMGJEbDVaa2xDVGpoeVZtVnFlV2xxUXk4ckwyZHZLME5FZEZJeVYyNHpOVkpaUzFCWU1rUkpZakV3VGs1cFprZHBDaXRtWWxreVpFeHNjRE5sVlRaSlNFVjVkMmwzVkZKSVkzTlZjRFpSY2k5aFVERTVZZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNTE0NWExMjktM2Q5Zi00OTU5LWJjYmEtMTRhMDkwMmM2OGUwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbXVsdGljbG91ZAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1tdWx0aWNsb3VkIgogICAgdXNlcjogdGVzdC1tdWx0aWNsb3VkLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1tdWx0aWNsb3VkCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1tdWx0aWNsb3VkLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpbHZlTDZtYXowVFliRVFJRDM0SGpKUnVwTUpFSEVYV3hmRHJ3NlNTamdDUEtvS3BOSVpiRzhjYg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1371" + - "2614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:18 GMT + - Wed, 18 Oct 2023 16:44:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -630,7 +630,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f10d5285-b5f3-4a65-a677-1df292572e99 + - ef1a82c0-bc78-40ab-8a98-dfd07f66e6b0 status: 200 OK code: 200 duration: "" @@ -641,19 +641,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:44:42.914178Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:23 GMT + - Wed, 18 Oct 2023 16:44:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -663,7 +663,42 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d9f8ef9-e172-46c2-b19d-b6869469d7e2 + - e58447c9-e9a8-4897-9023-c1139ff3a892 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-multicloud","node_type":"DEV1-M","placement_group_id":null,"autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0/pools + method: POST + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101105Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "629" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19e4f5e7-15c9-44c9-af63-2cd54f41f36b status: 200 OK code: 200 duration: "" @@ -674,19 +709,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1371" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:28 GMT + - Wed, 18 Oct 2023 16:44:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -696,7 +731,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26a24a5a-25cd-4495-9eb5-ad08df4ae786 + - 3d587ea5-af42-49cb-b76d-fcbf65891790 status: 200 OK code: 200 duration: "" @@ -707,19 +742,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1371" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:33 GMT + - Wed, 18 Oct 2023 16:44:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -729,7 +764,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b8245a1-70c8-47c5-9284-3bc65062e500 + - e30e0b36-b017-4a43-b575-1f15720a4f33 status: 200 OK code: 200 duration: "" @@ -740,19 +775,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:15:56.738628Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1371" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:38 GMT + - Wed, 18 Oct 2023 16:44:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -762,7 +797,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fec08ec-ba3e-4560-ac83-eb973c169add + - ac92498e-c354-49ae-b5ab-8ddc105ecfd5 status: 200 OK code: 200 duration: "" @@ -773,19 +808,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:17:39.686777Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1368" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:43 GMT + - Wed, 18 Oct 2023 16:45:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -795,7 +830,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d70f996-5e1f-49c8-940b-82eeac9fe119 + - babd1777-c976-414d-88f0-0ec70bef70a8 status: 200 OK code: 200 duration: "" @@ -806,19 +841,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:17:39.686777Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1368" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:43 GMT + - Wed, 18 Oct 2023 16:45:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -828,7 +863,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9288bdb6-9392-45be-b175-38a8d4e54f40 + - 2a7f5b57-35d0-4344-a3b3-2e2b789a08dd status: 200 OK code: 200 duration: "" @@ -839,19 +874,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbXVsdGljbG91ZCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMW81Q2k4MmVFSjZaamt3WW5ack5HNDNaalJWTTFGNGQxUTBhSHBtUjJsNEwwOXFOSFpRWkdkWEwyRnlVMjlJZGl0d2ExUlNhR3huVFdvd09Vb3hZVEpJWWxjS2RUTlNRekZ2UVVkVGNGcEpVRzVVUTJ4UFpWcE5jRXBpZVhWdVpHcFZSR3BaWkVreFRVODBkVU5NYzNkclVWb3hlbVUyZVdKNmFsaE9ZMk01TUhGd2NRcGlWME5DUjI5dGVWUjBXbFZvTVhGbWVIVm1Relp0VGxWMGJFaGlaRXhCTm1RNEsySlVTVUpPWkdkNlZWTlVWekZqTm5keWEwZGlLMjR2TVhaTWJHOHJDazFpVDB4cU5GZGxMMXBIUjJONGNpOVhRMWR6YW1kV2VHUnRiRlJEY0d0alppOVdPRUpZUVU0NVp6VlROMWQwYlRoS1NsWkpSbTQ1Ym1VMWMzSnVLMW9LVUZOVlRXUlphazlKU2pOaGIzWXhiMk5MUzFCelJXbHZNMGhKT0RBelpEQk5ZM2t2V2tKaGJURnZaME5SYzBWSFl6a3ljVkJNVDNGYU9GWjZkMFpvZGdwVWVIaGlUVGhJVjNsQmJVVjNMMmxvVjNVd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTFIxUllkVlJIU2paTU5qSnljR2RoZFhJd2RuVlBRVW92UzIxTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRVpFTnpaM0JPTUVzMlJ6aGtVRVpDT1RReU5WWktXakoyZHpSaGN6STNkSEZyV0RCNE1HSjBPWGhYZEdSTVpsRlJUd3A0UlU5cWEwSm9RbU5CVm1OMk9XSjRXRlpTTHpkb2RGRlNTRTl2V0RjM09GVk9aVEJ4ZGtocmQwdHVLMnBNUXpGdFpqUXhXRE5pWW01QmVpOVpRMEZ4Q201dmJTdFNSSEkyV25GbVExUmlkbUZIWjNka1ZHbFNZbTE1WWswelVucEVUV05VYVhWWVN5dFFkVk4wWlZOVlJFbElWWGxWWTBzcmRVbDVTSEl6UVRBS05VVkZWRzFJTDNSNFZITnJhMjR4UzJ0ek5YTnZWSGRxZEhaSVpEWTJlRmhhUVdodWR6QXZPRlprTm05M2VqaFZiVXAyYUhkaE4wVTBZUzl0Y0dFME9RcGxXbXhIYm5oV2IyOWtSVEk0Unk4MlEwdGhNblJXU1ROWWMyeFpLMUJPT0cxb1N6VlBVbXRHZG1KT1ZVeFpTMGRQZGpKMGRrcHlhVEIyWVhwbllVZFhDbGx6ZDI1YWNIcGxTVEF2YTNSalJXNVpSRWRJTVdnd1RqQnBRWGRzVDFGU1ZUWkRjd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjBkMjM5OWUtMzc1Ni00ZTQwLTliNzAtNGQ4M2E4NGEzODFkLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbXVsdGljbG91ZAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1tdWx0aWNsb3VkIgogICAgdXNlcjogdGVzdC1tdWx0aWNsb3VkLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1tdWx0aWNsb3VkCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1tdWx0aWNsb3VkLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBJWm9OTW9Xd040ZHNWNlFQaFhSSHBvbHphelZGamdUZlg0amtrOHduT1J1OTRoV3E3M2pxYmVjcA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2612" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:43 GMT + - Wed, 18 Oct 2023 16:45:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -861,7 +896,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0bf415d-488f-487c-9179-b26af35a3394 + - 3af2622c-24cc-4bc6-b808-3abf7cdd59ef status: 200 OK code: 200 duration: "" @@ -872,19 +907,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:17:39.686777Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1368" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:43 GMT + - Wed, 18 Oct 2023 16:45:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -894,32 +929,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c67bf5b4-d646-45e0-bd22-d67b4f3335e7 + - 5dfdf38a-8be2-4bb8-840b-df78212f734c status: 200 OK code: 200 duration: "" - request: - body: '{"name":"test-multicloud","node_type":"DEV1-M","placement_group_id":null,"autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 16:45:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e790edb-0f55-4a21-b07e-7561a0c94b63 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d/pools - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027002Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "579" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:43 GMT + - Wed, 18 Oct 2023 16:45:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +995,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3657e934-aed9-43ef-ac17-984396641b6b + - 2f6878c9-5c64-4cfe-b137-520ceb121b0b status: 200 OK code: 200 duration: "" @@ -940,19 +1006,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:43 GMT + - Wed, 18 Oct 2023 16:45:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -962,7 +1028,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae5514e0-9197-446b-a70a-58bb5c8fdc8f + - 3bf9698e-4056-4f7d-84d3-b867e712f2eb status: 200 OK code: 200 duration: "" @@ -973,19 +1039,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:48 GMT + - Wed, 18 Oct 2023 16:45:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -995,7 +1061,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c052d475-ae4f-4b8a-9f13-5d2f12b1756f + - fc73e678-24a1-4398-9d7a-2fafc2e0ff0c status: 200 OK code: 200 duration: "" @@ -1006,19 +1072,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:53 GMT + - Wed, 18 Oct 2023 16:45:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1028,7 +1094,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6006e622-fd10-409d-bc2b-f288be826c5f + - 34376c87-7a4c-4d27-8f61-e2407e7c1862 status: 200 OK code: 200 duration: "" @@ -1039,19 +1105,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:58 GMT + - Wed, 18 Oct 2023 16:45:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1061,7 +1127,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbcb6a47-2c77-4691-aabe-f49b8f1d3d26 + - 40e86f5f-c39f-4ddc-a7d6-1ffab37a85ee status: 200 OK code: 200 duration: "" @@ -1072,19 +1138,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:04 GMT + - Wed, 18 Oct 2023 16:45:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1094,7 +1160,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fa87d85-f705-4578-b2d6-1e8891930721 + - 1b4ff309-04d3-4c3b-b6cd-f90f9dcef1c2 status: 200 OK code: 200 duration: "" @@ -1105,19 +1171,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:09 GMT + - Wed, 18 Oct 2023 16:45:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,7 +1193,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dff164c1-f1e7-45c3-9076-805be65df54a + - a05dbf7c-1ab9-4f01-8b2a-3b8b60e874e0 status: 200 OK code: 200 duration: "" @@ -1138,19 +1204,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:14 GMT + - Wed, 18 Oct 2023 16:46:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +1226,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14b485f8-46da-4f45-8ab2-ebdba8be1c88 + - d940056d-7566-4cd1-a9a3-719fc15c385e status: 200 OK code: 200 duration: "" @@ -1171,19 +1237,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:19 GMT + - Wed, 18 Oct 2023 16:46:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1193,7 +1259,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6132729-9d18-4ba9-a49f-9cb985409bcc + - 2bf4b908-fb48-4d48-9d19-26076d8153fb status: 200 OK code: 200 duration: "" @@ -1204,19 +1270,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:24 GMT + - Wed, 18 Oct 2023 16:46:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1226,7 +1292,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1c571ac-6abc-445a-bd09-b704b3df85ae + - b82c6b19-3edf-4ecd-90e0-5135890b8570 status: 200 OK code: 200 duration: "" @@ -1237,19 +1303,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:29 GMT + - Wed, 18 Oct 2023 16:46:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1259,7 +1325,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bed1e31c-89e6-4be8-847d-a19b99b20ab5 + - 624ee52b-9bd8-4550-8c85-397ae4523437 status: 200 OK code: 200 duration: "" @@ -1270,19 +1336,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:34 GMT + - Wed, 18 Oct 2023 16:46:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1292,7 +1358,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9d7fa90-f6c4-4148-9e3c-5272c8734bc2 + - 3aa822e8-430a-4740-847f-4b1563cc8c2f status: 200 OK code: 200 duration: "" @@ -1303,19 +1369,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:39 GMT + - Wed, 18 Oct 2023 16:46:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1325,7 +1391,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ee5eee9-7d3e-4f63-b02e-85a94bc56ac0 + - 11bf8c40-cab5-442a-99f1-e625dac65bf0 status: 200 OK code: 200 duration: "" @@ -1336,19 +1402,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:44 GMT + - Wed, 18 Oct 2023 16:46:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1358,7 +1424,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccff000d-2d28-4c87-83b8-bb83481c9476 + - 298c13ff-46ab-4932-8753-f0e2ddb05b8a status: 200 OK code: 200 duration: "" @@ -1369,19 +1435,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:49 GMT + - Wed, 18 Oct 2023 16:46:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1391,7 +1457,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5b7418b-04ba-40d5-a679-a0517278b381 + - 8af636d8-05a1-4616-9057-9969a47d9793 status: 200 OK code: 200 duration: "" @@ -1402,19 +1468,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:54 GMT + - Wed, 18 Oct 2023 16:46:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1424,7 +1490,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf3461de-e999-4055-a489-b2c09f223ebd + - a4f82ed2-7746-4497-bd37-39d27be19579 status: 200 OK code: 200 duration: "" @@ -1435,19 +1501,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:59 GMT + - Wed, 18 Oct 2023 16:46:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1457,7 +1523,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68cba471-ae97-4195-b74b-4677ca8ea4ac + - 741b35f2-82eb-412c-b9c0-d8c154d0ad60 status: 200 OK code: 200 duration: "" @@ -1468,19 +1534,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:04 GMT + - Wed, 18 Oct 2023 16:46:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1490,7 +1556,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74e3e88e-310a-4fdc-8f1b-d152d135d829 + - d70d0c38-2fb1-48b1-8274-204bc7ad9ab1 status: 200 OK code: 200 duration: "" @@ -1501,19 +1567,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:09 GMT + - Wed, 18 Oct 2023 16:46:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1523,7 +1589,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e01d027d-c400-4535-a997-5011c35dea31 + - ff9121eb-abd7-4a43-8695-3c6527a659e5 status: 200 OK code: 200 duration: "" @@ -1534,19 +1600,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:14 GMT + - Wed, 18 Oct 2023 16:47:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1556,7 +1622,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e3e0ce2-5941-4397-bcd9-1e81a56b8772 + - 42954f9e-b2b2-44b7-84b6-2ac6cdae9663 status: 200 OK code: 200 duration: "" @@ -1567,19 +1633,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:19 GMT + - Wed, 18 Oct 2023 16:47:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1589,7 +1655,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11725954-a1d9-4e34-a14b-0f5bab073a1c + - 01d1b790-4e71-4eb1-ae79-ce769a9682e5 status: 200 OK code: 200 duration: "" @@ -1600,19 +1666,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:24 GMT + - Wed, 18 Oct 2023 16:47:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1622,7 +1688,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76ac9217-2be4-4163-a404-62e8a9edda0f + - fd3076ac-7cec-4643-8e26-ad8b5b6285cd status: 200 OK code: 200 duration: "" @@ -1633,19 +1699,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:29 GMT + - Wed, 18 Oct 2023 16:47:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1655,7 +1721,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f2aee25-2e40-4806-b5e9-d2b449276e31 + - 6643c7ef-3ff3-45fd-9a76-83a4e26d666c status: 200 OK code: 200 duration: "" @@ -1666,19 +1732,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:34 GMT + - Wed, 18 Oct 2023 16:47:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1688,7 +1754,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9b29fec-f9f1-45dc-9d2b-55ad573fec03 + - c31ee53c-d6ef-4560-b74e-a4fad45a04d6 status: 200 OK code: 200 duration: "" @@ -1699,19 +1765,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:39 GMT + - Wed, 18 Oct 2023 16:47:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1721,7 +1787,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca2b3a68-8932-4bef-8fc4-ccc7ea7cf6da + - c7f0c582-f2d7-4b79-a5ec-8eb9409c4761 status: 200 OK code: 200 duration: "" @@ -1732,19 +1798,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:44 GMT + - Wed, 18 Oct 2023 16:47:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1754,7 +1820,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2831d52-f123-4411-97de-80e61b63ac11 + - 796999a7-e779-45f6-b2d0-798c36e014f0 status: 200 OK code: 200 duration: "" @@ -1765,19 +1831,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:49 GMT + - Wed, 18 Oct 2023 16:47:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1787,7 +1853,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 496c2eaa-bb06-4380-aafd-9721ebd78ecc + - 6d1acd42-fef4-4fc3-ace3-bfe18cbae2cb status: 200 OK code: 200 duration: "" @@ -1798,19 +1864,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:55 GMT + - Wed, 18 Oct 2023 16:47:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1820,7 +1886,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7408382e-b0a4-4082-8ac8-a5cf5d8b47d3 + - 5b54f048-13b2-4f0f-9b89-87449241d260 status: 200 OK code: 200 duration: "" @@ -1831,19 +1897,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:00 GMT + - Wed, 18 Oct 2023 16:47:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1853,7 +1919,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6228006-660b-43d2-999f-d9fc60d1b8be + - f5c2631b-9880-480a-b26d-e4cb1a528bb7 status: 200 OK code: 200 duration: "" @@ -1864,19 +1930,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:05 GMT + - Wed, 18 Oct 2023 16:47:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1886,7 +1952,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 025b59c2-9717-4e79-a3d0-b7b7369054ea + - 4f597153-9bfd-49ee-91e9-88f702b104d6 status: 200 OK code: 200 duration: "" @@ -1897,19 +1963,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:10 GMT + - Wed, 18 Oct 2023 16:47:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1919,7 +1985,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc25c3d5-2fc2-4def-8782-2febb96c60ba + - c8fe9933-8638-4cf6-9a93-d273e2be9c76 status: 200 OK code: 200 duration: "" @@ -1930,19 +1996,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:15 GMT + - Wed, 18 Oct 2023 16:48:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1952,7 +2018,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 210565a7-a2eb-4302-bd78-c47cdb8537d0 + - 581f303b-609b-4b0d-ae58-9859e5b9822e status: 200 OK code: 200 duration: "" @@ -1963,19 +2029,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:20 GMT + - Wed, 18 Oct 2023 16:48:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1985,7 +2051,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f3255ab-20b8-40b2-b7e4-f1784a3e2d4e + - 29eebd22-0243-4baf-8706-7a591d90e9b1 status: 200 OK code: 200 duration: "" @@ -1996,19 +2062,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:25 GMT + - Wed, 18 Oct 2023 16:48:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2018,7 +2084,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aaffd2fc-48f6-4093-8155-4817f2aa7666 + - e02e4b5d-faf2-47f3-9fdc-a3276d1d13e4 status: 200 OK code: 200 duration: "" @@ -2029,19 +2095,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-09-01T16:17:43.505027Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "576" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:30 GMT + - Wed, 18 Oct 2023 16:48:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2051,7 +2117,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a8521bc-bc3f-4fdd-aae4-694172b5475d + - a521b870-c7b3-4686-80b2-47d7b1ea3331 status: 200 OK code: 200 duration: "" @@ -2062,19 +2128,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-09-01T16:20:34.665448Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "574" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:35 GMT + - Wed, 18 Oct 2023 16:48:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2084,7 +2150,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9ade13b-b90a-4371-b206-8d61c7fe7deb + - 84843da2-98d0-4163-8e9c-645c4d28a9cb status: 200 OK code: 200 duration: "" @@ -2095,19 +2161,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-09-01T16:20:34.665448Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "574" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:35 GMT + - Wed, 18 Oct 2023 16:48:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2117,7 +2183,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 957ef17e-fb66-4a96-bcb1-bbe28ea85dce + - 7099c132-5eda-4074-82a9-fa60cb1f68f4 status: 200 OK code: 200 duration: "" @@ -2128,19 +2194,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d/nodes?order_by=created_at_asc&page=1&pool_id=deb1280f-1ebb-4988-b361-46a31e1f78f3&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"nodes":[{"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-09-01T16:17:43.932982Z","error_message":null,"id":"254426bc-5056-4957-9c28-bd795785d2e7","name":"scw-test-multicloud-test-multicloud-254426bc50","pool_id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","provider_id":"scaleway://instance/fr-par-1/a22862bb-a8d8-4c36-8eec-166dbf1eddae","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-09-01T16:20:34.656366Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "607" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:35 GMT + - Wed, 18 Oct 2023 16:48:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2150,7 +2216,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5be115f8-4e35-4364-af13-d17083dc7fc0 + - b71c772a-81ca-4a88-9353-023d42e02656 status: 200 OK code: 200 duration: "" @@ -2161,19 +2227,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:17:39.686777Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1368" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:35 GMT + - Wed, 18 Oct 2023 16:48:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2183,7 +2249,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa0e8d5f-b121-4a9c-a264-d2dba91a48df + - 5e300ac5-c287-443d-a2b8-02a24bfbd162 status: 200 OK code: 200 duration: "" @@ -2194,19 +2260,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:17:39.686777Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1368" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:35 GMT + - Wed, 18 Oct 2023 16:48:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2216,7 +2282,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad74ba0e-9a10-41de-a3b0-669478c49ad4 + - 7957f782-3cea-4bca-a2e8-ec74f743fe1b status: 200 OK code: 200 duration: "" @@ -2227,19 +2293,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbXVsdGljbG91ZCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlZNVTlHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRlV4VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMW81Q2k4MmVFSjZaamt3WW5ack5HNDNaalJWTTFGNGQxUTBhSHBtUjJsNEwwOXFOSFpRWkdkWEwyRnlVMjlJZGl0d2ExUlNhR3huVFdvd09Vb3hZVEpJWWxjS2RUTlNRekZ2UVVkVGNGcEpVRzVVUTJ4UFpWcE5jRXBpZVhWdVpHcFZSR3BaWkVreFRVODBkVU5NYzNkclVWb3hlbVUyZVdKNmFsaE9ZMk01TUhGd2NRcGlWME5DUjI5dGVWUjBXbFZvTVhGbWVIVm1Relp0VGxWMGJFaGlaRXhCTm1RNEsySlVTVUpPWkdkNlZWTlVWekZqTm5keWEwZGlLMjR2TVhaTWJHOHJDazFpVDB4cU5GZGxMMXBIUjJONGNpOVhRMWR6YW1kV2VHUnRiRlJEY0d0alppOVdPRUpZUVU0NVp6VlROMWQwYlRoS1NsWkpSbTQ1Ym1VMWMzSnVLMW9LVUZOVlRXUlphazlKU2pOaGIzWXhiMk5MUzFCelJXbHZNMGhKT0RBelpEQk5ZM2t2V2tKaGJURnZaME5SYzBWSFl6a3ljVkJNVDNGYU9GWjZkMFpvZGdwVWVIaGlUVGhJVjNsQmJVVjNMMmxvVjNVd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTFIxUllkVlJIU2paTU5qSnljR2RoZFhJd2RuVlBRVW92UzIxTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRVpFTnpaM0JPTUVzMlJ6aGtVRVpDT1RReU5WWktXakoyZHpSaGN6STNkSEZyV0RCNE1HSjBPWGhYZEdSTVpsRlJUd3A0UlU5cWEwSm9RbU5CVm1OMk9XSjRXRlpTTHpkb2RGRlNTRTl2V0RjM09GVk9aVEJ4ZGtocmQwdHVLMnBNUXpGdFpqUXhXRE5pWW01QmVpOVpRMEZ4Q201dmJTdFNSSEkyV25GbVExUmlkbUZIWjNka1ZHbFNZbTE1WWswelVucEVUV05VYVhWWVN5dFFkVk4wWlZOVlJFbElWWGxWWTBzcmRVbDVTSEl6UVRBS05VVkZWRzFJTDNSNFZITnJhMjR4UzJ0ek5YTnZWSGRxZEhaSVpEWTJlRmhhUVdodWR6QXZPRlprTm05M2VqaFZiVXAyYUhkaE4wVTBZUzl0Y0dFME9RcGxXbXhIYm5oV2IyOWtSVEk0Unk4MlEwdGhNblJXU1ROWWMyeFpLMUJPT0cxb1N6VlBVbXRHZG1KT1ZVeFpTMGRQZGpKMGRrcHlhVEIyWVhwbllVZFhDbGx6ZDI1YWNIcGxTVEF2YTNSalJXNVpSRWRJTVdnd1RqQnBRWGRzVDFGU1ZUWkRjd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjBkMjM5OWUtMzc1Ni00ZTQwLTliNzAtNGQ4M2E4NGEzODFkLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbXVsdGljbG91ZAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1tdWx0aWNsb3VkIgogICAgdXNlcjogdGVzdC1tdWx0aWNsb3VkLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1tdWx0aWNsb3VkCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1tdWx0aWNsb3VkLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBJWm9OTW9Xd040ZHNWNlFQaFhSSHBvbHphelZGamdUZlg0amtrOHduT1J1OTRoV3E3M2pxYmVjcA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2612" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:35 GMT + - Wed, 18 Oct 2023 16:48:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2249,7 +2315,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c94a8f91-2c36-4955-b267-a17dbe3d096a + - 6e095c09-0f6e-41ce-922e-36822fd4c58a status: 200 OK code: 200 duration: "" @@ -2260,19 +2326,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-09-01T16:20:34.665448Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "574" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:35 GMT + - Wed, 18 Oct 2023 16:48:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2282,7 +2348,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70f5967d-a4b8-43a1-8559-f21f02a0f470 + - 24775dd7-60b2-4c89-a0c0-980841814a81 status: 200 OK code: 200 duration: "" @@ -2293,19 +2359,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d/nodes?order_by=created_at_asc&page=1&pool_id=deb1280f-1ebb-4988-b361-46a31e1f78f3&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d method: GET response: - body: '{"nodes":[{"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-09-01T16:17:43.932982Z","error_message":null,"id":"254426bc-5056-4957-9c28-bd795785d2e7","name":"scw-test-multicloud-test-multicloud-254426bc50","pool_id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","provider_id":"scaleway://instance/fr-par-1/a22862bb-a8d8-4c36-8eec-166dbf1eddae","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-09-01T16:20:34.656366Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "607" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:35 GMT + - Wed, 18 Oct 2023 16:48:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2315,7 +2381,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92dc2bc4-eecc-4804-b0f4-4a290bf419f5 + - 6aa89d47-d77f-4553-accb-94c576d77801 status: 200 OK code: 200 duration: "" @@ -2326,19 +2392,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/deb1280f-1ebb-4988-b361-46a31e1f78f3 - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","container_runtime":"containerd","created_at":"2023-09-01T16:17:43.495547Z","id":"deb1280f-1ebb-4988-b361-46a31e1f78f3","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-09-01T16:20:36.172931247Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.0","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "580" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:36 GMT + - Wed, 18 Oct 2023 16:49:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2348,7 +2414,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a910ddc2-be14-4324-a62c-23baa4e3f5c1 + - f5cb3014-0a2d-4dd3-a3e3-0bf4fabae82f status: 200 OK code: 200 duration: "" @@ -2359,19 +2425,250 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d?with_additional_resources=true - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49d09c35-cf16-4711-b8a3-42a045c26015 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 48810849-2701-4559-bf48-4eab120ff5da + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 390b98b3-029a-43f0-bf33-2fae9c5c453a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4000672e-d602-4be4-a19b-0db3032b345d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:30 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7737872d-8dfd-42c3-bbd3-00def2257702 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:44:46.894101Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:35 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb76dc02-41b7-4128-bc7c-978c96a776ca + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T16:49:38.125336Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "624" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ac82bab-6c94-4f31-bc3a-b63bafce2cb6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:20:36.254317102Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T16:49:38.125336Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1374" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:36 GMT + - Wed, 18 Oct 2023 16:49:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2381,7 +2678,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd7f1d50-6db2-4b28-8ba9-51d58d0b7dff + - eeed9bb3-6103-497a-9daa-1951eea9d85a status: 200 OK code: 200 duration: "" @@ -2392,19 +2689,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0/nodes?order_by=created_at_asc&page=1&pool_id=2c3afa50-e727-4e28-8135-71b8327b563d&status=unknown method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:20:36.254317Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"nodes":[{"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-18T16:44:47.438616Z","error_message":null,"id":"0a828bda-398d-4614-b1cf-1c64f7064650","name":"scw-test-multicloud-test-multicloud-0a828bda39","pool_id":"2c3afa50-e727-4e28-8135-71b8327b563d","provider_id":"scaleway://instance/fr-par-1/16d55cb5-70e8-496c-b363-d885ebdfbaef","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:49:38.109228Z"}],"total_count":1}' headers: Content-Length: - - "1371" + - "623" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:36 GMT + - Wed, 18 Oct 2023 16:49:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2414,7 +2711,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd80bb56-5c73-467a-8e3d-536fb6159f94 + - fb00321c-855d-49a2-8f51-72edbe0172c5 status: 200 OK code: 200 duration: "" @@ -2425,19 +2722,217 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:20:36.254317Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:44:42.914178Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c1c54e00-98cf-494f-b9c4-b7bbb439c34a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:44:42.914178Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a39daa3-6eb2-4d50-b121-ac59702156ff + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbXVsdGljbG91ZCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUk5lazR4YjFoRVZFMTZUVlJCZUU1NlJUSk9SRTE2VGpGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMFJYQ2toRmFFdExNV3BSV25OYWFFdHdPRTlIUWpaWVQwTjVXREZuYUU5clZ6VlFVWGRoVGtsMGIwVnNNbk16Yms1aFR5dEdNMjl6UjA1eWNXZHJURnBNWnpnS1VUUkhkV3haTURobU5ERmlhRTF4VkVOd2FpdDBObGhYSzB4blUwaHpOSFpyWjNKTmFWcDNNRzE1Tm1GdmEzQnlOR3hwTHpCUlpWTnRiR2xZU25kNlNBcE9kSEJVYVVZMkwzVXhPR1ZaVTNvMFEydE9VRTVPTlRaUU5taGlhVFpsYUVGUlVXRXhTSFp3WVVKemRqaG1TMFpYYUhsS1VVWjZTVkJXWTFOak5sVXlDbXRHY0RRM1RWVTROREIwZFU1d1VISklXa1pQYmxWM2NYaEdSREpyU21KV1VWaDZhV1ptVDA0MWEyd3dXVVZLV1ZCNWRsZHFiMVJGU25GVmVEVnVSbFVLTVZWd05YaExRVzFFUVZKcVkwRk1TRFJOZDFscVNuVnBkVVJ2U2pOdWVTOXJjVlJwZVUxRGVYbGpSMGxSVkUxaE56WnhVR2ROU0d0aWNtdFpaRVl3UlFvd1VFOHlUMUpZY1dKUlpHUjRZbk5IT1ZwelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRWFHNUJibTFPYUVGa2IwTnhTbXhHZDI5RE16RjZOa0o1VFZaTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQlRtcHRRakV6VGtORlZUUmpVRUZXWml0Wk9VbEdWRTVPVmxGRFkxaGhSMGxSUVVRek5WQlFNa0V3VEcwNVpGRkxjQXBQWVdsc1pEaG5hMWxsYnpSclJXMDFhWFF3YTBOTlVHVkhWa2t3VUU5RFdFYzBNR2xGV0dGWlVIb3JVRGhXUTBoeFkzUkZaRkZTVjFGV09HMTVhWFozQ2tneGR6WlJhRWhEYVhoamRUaElMMDRyVFhoUWRVRTFVRGRJY0dSYVIzWm5TR1ZZYURJeWNXRlFkbE15WVZaV1UzZGFhMHhOV0ZsMVFscE5SR1Z3U2tJS2JHa3ZPWFpUY201dFltUk5NbXR5YnpFNWNrUnlRMFZCVEZwNk9FOXpRbWd6T1hCTVRFWmFhbWRoWW1GRVN6QkdMelZUUnpkcVdYWlFTbm8zTHpKSFZ3cHZOR3hMVGtKSk5Yb3hkRzEzTkRBMGJEbDVaa2xDVGpoeVZtVnFlV2xxUXk4ckwyZHZLME5FZEZJeVYyNHpOVkpaUzFCWU1rUkpZakV3VGs1cFprZHBDaXRtWWxreVpFeHNjRE5sVlRaSlNFVjVkMmwzVkZKSVkzTlZjRFpSY2k5aFVERTVZZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNTE0NWExMjktM2Q5Zi00OTU5LWJjYmEtMTRhMDkwMmM2OGUwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtbXVsdGljbG91ZAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1tdWx0aWNsb3VkIgogICAgdXNlcjogdGVzdC1tdWx0aWNsb3VkLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1tdWx0aWNsb3VkCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1tdWx0aWNsb3VkLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpbHZlTDZtYXowVFliRVFJRDM0SGpKUnVwTUpFSEVYV3hmRHJ3NlNTamdDUEtvS3BOSVpiRzhjYg==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2614" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:41 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 36bfcc00-296a-4a25-97ae-81ff3e0cfb68 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T16:49:38.125336Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "624" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:41 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c231a46-5b7e-400d-8b07-796f09c5cca8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0/nodes?order_by=created_at_asc&page=1&pool_id=2c3afa50-e727-4e28-8135-71b8327b563d&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-18T16:44:47.438616Z","error_message":null,"id":"0a828bda-398d-4614-b1cf-1c64f7064650","name":"scw-test-multicloud-test-multicloud-0a828bda39","pool_id":"2c3afa50-e727-4e28-8135-71b8327b563d","provider_id":"scaleway://instance/fr-par-1/16d55cb5-70e8-496c-b363-d885ebdfbaef","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:49:38.109228Z"}],"total_count":1}' + headers: + Content-Length: + - "623" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:41 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 777954a5-5340-4ccc-b478-4a6390c4ce82 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/2c3afa50-e727-4e28-8135-71b8327b563d + method: DELETE + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","container_runtime":"containerd","created_at":"2023-10-18T16:44:46.885983Z","id":"2c3afa50-e727-4e28-8135-71b8327b563d","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-multicloud","node_type":"dev1_m","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":40000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-18T16:49:41.812585083Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "630" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:41 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 04cc45c9-ce77-4760-a3a6-afe69b48d8ff + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0?with_additional_resources=true + method: DELETE + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:49:41.895527822Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:41 GMT + - Wed, 18 Oct 2023 16:49:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2447,7 +2942,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eed56ea4-b92d-48ae-885b-92fef6f54916 + - e125d128-59d2-4a4c-b8f3-5e730809895a status: 200 OK code: 200 duration: "" @@ -2458,19 +2953,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:20:36.254317Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:49:41.895528Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:46 GMT + - Wed, 18 Oct 2023 16:49:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2480,7 +2975,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a6558c4-6b98-4294-8ea8-5cf596bce445 + - b2476e43-b954-480a-8674-1a09b4fac55f status: 200 OK code: 200 duration: "" @@ -2491,19 +2986,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:20:36.254317Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:49:41.895528Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:51 GMT + - Wed, 18 Oct 2023 16:49:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2513,7 +3008,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97d50170-84a2-405f-8d63-875d6d93a923 + - f0eb10c6-0433-4c21-96f2-e684635bd2c9 status: 200 OK code: 200 duration: "" @@ -2524,19 +3019,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://60d2399e-3756-4e40-9b70-4d83a84a381d.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:15:56.725457Z","created_at":"2023-09-01T16:15:56.725457Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.60d2399e-3756-4e40-9b70-4d83a84a381d.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"60d2399e-3756-4e40-9b70-4d83a84a381d","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-09-01T16:20:36.254317Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5145a129-3d9f-4959-bcba-14a0902c68e0.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:43:35.895129Z","created_at":"2023-10-18T16:43:35.895129Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5145a129-3d9f-4959-bcba-14a0902c68e0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5145a129-3d9f-4959-bcba-14a0902c68e0","ingress":"none","name":"test-multicloud","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"multicloud","updated_at":"2023-10-18T16:49:41.895528Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1371" + - "1414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:56 GMT + - Wed, 18 Oct 2023 16:49:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2546,7 +3041,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3983db1-0e4f-4ad9-b01c-c1661c7c4383 + - 99aa31cf-935d-4444-ad6f-f361f1558fe4 status: 200 OK code: 200 duration: "" @@ -2557,10 +3052,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","type":"not_found"}' headers: Content-Length: - "128" @@ -2569,7 +3064,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:01 GMT + - Wed, 18 Oct 2023 16:49:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2579,7 +3074,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1100e0e8-0ac1-4f31-8b83-0740c4db029c + - d6ccc2b1-e0fc-43f0-8258-715b8af69c5a status: 404 Not Found code: 404 duration: "" @@ -2590,10 +3085,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/60d2399e-3756-4e40-9b70-4d83a84a381d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5145a129-3d9f-4959-bcba-14a0902c68e0 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"60d2399e-3756-4e40-9b70-4d83a84a381d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"5145a129-3d9f-4959-bcba-14a0902c68e0","type":"not_found"}' headers: Content-Length: - "128" @@ -2602,7 +3097,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:01 GMT + - Wed, 18 Oct 2023 16:49:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2612,7 +3107,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c2d9489-079b-496b-9ca8-e846285a22b2 + - 497826fe-e6de-499f-960d-41d54a89443e status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-oidc.cassette.yaml b/scaleway/testdata/k8s-cluster-oidc.cassette.yaml index e6dc2df7e4..f3a63908cb 100644 --- a/scaleway/testdata/k8s-cluster-oidc.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-oidc.cassette.yaml @@ -12,11 +12,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,80 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07cd7b0d-14f9-4714-a4ef-427d27f21786 + - af32e9ae-5dec-414c-8d95-a10dabb82b1f status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"oidc","description":"","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"version":"1.28.0","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":null,"groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":null},"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-oidc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-18T16:43:38.885896Z","dhcp_enabled":true,"id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:38.885896Z","id":"306fa64d-dde0-4dcc-96d5-519d98391c44","subnet":"172.16.24.0/22","updated_at":"2023-10-18T16:43:38.885896Z"},{"created_at":"2023-10-18T16:43:38.885896Z","id":"0a508f71-c9e0-439d-87b7-b8725789e8ad","subnet":"fd63:256c:45f7:2ea1::/64","updated_at":"2023-10-18T16:43:38.885896Z"}],"tags":[],"updated_at":"2023-10-18T16:43:38.885896Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "710" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70c515eb-7c51-48d7-b50d-62ee6646786f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/578ed20e-1dd8-4de6-8aa5-552261b9473f + method: GET + response: + body: '{"created_at":"2023-10-18T16:43:38.885896Z","dhcp_enabled":true,"id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:38.885896Z","id":"306fa64d-dde0-4dcc-96d5-519d98391c44","subnet":"172.16.24.0/22","updated_at":"2023-10-18T16:43:38.885896Z"},{"created_at":"2023-10-18T16:43:38.885896Z","id":"0a508f71-c9e0-439d-87b7-b8725789e8ad","subnet":"fd63:256c:45f7:2ea1::/64","updated_at":"2023-10-18T16:43:38.885896Z"}],"tags":[],"updated_at":"2023-10-18T16:43:38.885896Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "710" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd3716d6-f9c3-4243-b7c7-848571288439 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-oidc","description":"","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":null,"groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":null},"apiserver_cert_sans":null,"private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f"}' form: {} headers: Content-Type: @@ -50,16 +118,49 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116074655Z","created_at":"2023-09-01T16:21:37.116074655Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:37.121612466Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151245Z","created_at":"2023-10-18T16:43:40.198151245Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:40.206955513Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1566" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c7bec22d-ee4e-4cc9-943f-684d2c9eb8c6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:40.206956Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1481" + - "1557" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:37 GMT + - Wed, 18 Oct 2023 16:43:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +170,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7cdf8b0-1f07-4174-87ce-79e05e1eadba + - 9c2dc20a-e0fe-4060-9079-7398445c78f1 status: 200 OK code: 200 duration: "" @@ -80,19 +181,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:37.121612Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:41.662Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1472" + - "1559" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:37 GMT + - Wed, 18 Oct 2023 16:43:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,7 +203,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d7156d4-865f-4b0e-8842-dd5a3d660871 + - 715a0893-1d11-481b-8865-68466a69a80c status: 200 OK code: 200 duration: "" @@ -113,19 +214,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:38.923863Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:41.662Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1477" + - "1559" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:42 GMT + - Wed, 18 Oct 2023 16:43:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -135,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc1b1ea8-c0a0-41b7-81a1-429058e0cdf5 + - cf13ea25-6231-463f-80da-3044eb97bb55 status: 200 OK code: 200 duration: "" @@ -146,19 +247,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:38.923863Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUk5NRTFXYjFoRVZFMTZUVlJCZUU1NlJUSk9SRTB3VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVXRCQ2tzNVRFVkhLMDlVVTNVNWVUQm5RVkpZUmtGUE9XeFVXVXRxVUVOQ1JrWjRObTFYV1ZKeGFEQXpRVVp6WkhwTlRXOVBaWEpEVW1oRWIwUkpaU3RwYVRFS056STJPSFI1YVRKclMzZzNaSG9ySzNWeFltdDRWSE56WjNsNWQxUmtiazU2V1VzeFIwZFlPRkIyVlVob01HUnpObXhyZEdWYVQySkdabk50Tm1nMVpBcFFTa3hoUW1GTWNrNXlZbWgyZEROdmQyMXFZbmxsY1daTE1sWkhlbWw2UVdwUWFIWmhTR0ZsYmpBelRsQktlbkZhWjJSNVJURlVUbmhRZUhwdGNuUjFDbEJ1YTFaeWFXTnljMVZPTmpab1UwOUtRV054WTNSclpIWmFXR0ZoWTFSd2IwOVdWRzVHVEZGd1MxcG5Vamt3Um5FeFlTdFFZVk5IUkcxNVpHWXliRXNLVnpsUFVVSTJZVzlpWjA1WlpWWlplWGwwUldSaVlYQkZVMEZCWW1SRFVtTlVWMHgxYVhFNVNIUnlUVzAzU21relZtbHljbmxTZEhCWFpYRkVTa3BMZWdwamNrODBTMVJWWldsWWRtSjJVaTh4TUZSelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSGJDOVlhMlF3U25kdGJFOXVSbkZ1ZWpoWVluQmxlVUZhYW1OTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQk9EUlNPVFJzVlRWUmJYTmtPRzVDZG5OS2RYWXZRbWx2TURJMFZWRnNVMlZDVWxSYVIxRmtOblJRZUVoS0wySlpWQW92WkhCSldsZEdWM0JSUkVwR2NqUk1SR1V4VjJaQ01XTXhZVlJoZEVWR2JtNXBTMmd6TTIxME1rWmxZalp1YUU5cVZrSmxkR1Z0TTJOd2FUWmlZVnBIQ214dFNHc3ZTMjVCT1hWTldETlZaRUZGUkZoSWFUWXdOMkZTVFVGcGVYbEpRekpDU1Vsc05FY3pPVzFGUkhadVVVOUhTM050VEhoaFlYQlFSM0ZZWkhZS1NFMWxOVzR2UzNSUVdsTkdjRUphZEhwalNXaENkR1JhZDI5eFJGVTVOQzlOUzBsT2NXSTVia2RWTURJemFEZDNORzlZT0ZreU1UWTRRVkl3ZWt4SGRncE1ZbVJ0WmpJMFRuWXpWa0pyZUc1Q2JVVTViVU5zZW5WU1kxVlFURzlMYkdGdVl5OTBZekJ3VEdwcVNtNHJTMHBYY21RNE1tVnNkMDlsVHpKbFVtVklDbWRLVjBwS2VtcDBMMGhwSzJkRFZuQTFNMW8xYVZWVloyVTVhRmR3TDA5UllWSkhOQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMWViMTQ1MzAtNWFmNC00NDQ5LTgxMTktZjQ1NDNmMjExODRmLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB3N0Zpb045TzlKbHpuM21vQzJtdVl3bWx3dXU2OWlKTml2dHNxN3B2NXpTUmdseDhUYTBZa2tMNg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1477" + - "2566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:42 GMT + - Wed, 18 Oct 2023 16:43:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c22f3025-fbfe-4a2d-8327-97a4f9db2683 + - b51ceb47-2262-4574-8614-76ac06d1705b status: 200 OK code: 200 duration: "" @@ -179,19 +280,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIm9pZGMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGZWs5R2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtWNlQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNSNENtSnFXbVV6V2pCRk9FNUVlR3hNTnpCVmIwcFFZVXhsVGk5NFoxbzVZVGg1ZVZnMU0xaFFibGhzV0RVclYzcHRVMHRDVFRGSlYyTm5ZWGRvVUVSWFJEY0tjRWR5VWs5UFJYTnFSMmxMUmpkV1ZDOW5Nalo0ZWpGVFUwVnVRbXByTkdvM2RuaG5XSFpDVkhKM2FuTndhWEJvU0ZGUldtUkZURkpNTlZwcVpqRnpVZ3A2WTBwa2VWbHVNME5QU2pBM1VXbG9ha0p1U1RORE0ySnZPV00wVmpkbFduZHVNa05yT1d4VU9ETkNRVVZyVUZweWVsZzBVR2d2Y2pCdGJuSktSV0pWQ2xCSWJIWkZZV3RRYjNWVWVrTm1kV0pKVURGdU1GaEZRakZ6UWpWSlJHNTNjREZTWXpGU1NXcGpMMmhvV21jelRYZHlUWGg1TTA1SVZUUjZTbTk0TjBRS1ltcG1Vblp1Y0V3d1pqTkdNVlp6SzJ0cE0zZzVWSGRsV0hCclEydHhXR1ZMTlc1a1Uwb3dZbmNyUVRaU2EydDBkRVpETTNZeU5GSk9OV3R0T0U5UldRcFRjR2RGUXlzeE1sbHhlRmM1TjBKaWJFOVZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZOVFZHYTBGMlZubHlhWEZDUlRRMVZqQnRWMk41VmpjeGVscE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNhMDFSWkZGWmJGaDZaVlpqWVRaUldXTnZTRXN3VGpsalltMXFSbUZ3YTNFeU5HVnVZU3MyYTNadVlqQkRaM0ozUndvMmVYUTJlVGQ1Wm1GM1drODJZVFJxVm5jMEsyOHZTVE55WWpGYWIyZzBTMjlUVUU5MVoyaG9Ra2hCWm1JMFNVRk9NemRDTDB0aE5sSnFOM2hWUjIxTUNrRnhkRlZYUkdocVoyNVVUVXRNVUdob2RtNTRhVVJDVVZNMWNEbE9VVkZ4V0dOV1lWUXlXbEpWZDBFeFRuUkdZbXBUV0c1eFJqTjFjSHBZYWpsUFdsUUtNbEY1VldwRmNFUXdhRzVRUzJWWFlTdDFWREJGZHpaT05VcFRPRUZHTlVOVlNraEdTVkprWTJWRmMxRndSM2hGUTNsb1lsRmpMM3BpY1daNFUyWkxTZ3BFTUd0MFpsbDRWMUJuVGxoNmIyMTZlVFJ2WkdWRWFtTTNaRzlaVTBwSWIwc3hVbWxKUlhGd1Rtd3JkbGd5SzBsYWVUQjFhMnBLV0VkMGJqSXhha1Z0Q25saVJWcHdhVTV0U2xOSFZXVkhUbU5EVDFwb2RFeHFla28zYkRGWk1reHFNekJvZHdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Q4ZGIwYmQ5LWRhODAtNDEyZi05MTc3LWVmMzFkYmNiZDAwNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBvaWRjCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJvaWRjIgogICAgdXNlcjogb2lkYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQG9pZGMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBvaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBJMUtTdDlTMDNaamdtd21VOFJ0bXdyazZOMm82bWVpc1drNkN1ZFFVdk81R3NncVZnR002cEx6NA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:41.662Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2524" + - "1559" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:42 GMT + - Wed, 18 Oct 2023 16:43:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,7 +302,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfa79e7d-ba93-40c7-8f08-b8cce060ca80 + - df5e5ada-fee1-4fa1-acbe-114741fca218 status: 200 OK code: 200 duration: "" @@ -212,19 +313,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/578ed20e-1dd8-4de6-8aa5-552261b9473f method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:38.923863Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:43:38.885896Z","dhcp_enabled":true,"id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:38.885896Z","id":"306fa64d-dde0-4dcc-96d5-519d98391c44","subnet":"172.16.24.0/22","updated_at":"2023-10-18T16:43:38.885896Z"},{"created_at":"2023-10-18T16:43:38.885896Z","id":"0a508f71-c9e0-439d-87b7-b8725789e8ad","subnet":"fd63:256c:45f7:2ea1::/64","updated_at":"2023-10-18T16:43:38.885896Z"}],"tags":[],"updated_at":"2023-10-18T16:43:38.885896Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1477" + - "710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:42 GMT + - Wed, 18 Oct 2023 16:43:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,7 +335,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f035dfa5-09c9-4648-9f8b-df478d3bc17e + - 6c4c4a0a-116e-4329-804e-18fdaf43c04e status: 200 OK code: 200 duration: "" @@ -245,19 +346,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:38.923863Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:41.662Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1477" + - "1559" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:42 GMT + - Wed, 18 Oct 2023 16:43:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -267,7 +368,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2a907ee-a90d-4d80-b7d5-eb6b61c9ad66 + - 69b3f7d8-ecf6-4b70-941a-c03c836e94bb status: 200 OK code: 200 duration: "" @@ -278,19 +379,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIm9pZGMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGZWs5R2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtWNlQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNSNENtSnFXbVV6V2pCRk9FNUVlR3hNTnpCVmIwcFFZVXhsVGk5NFoxbzVZVGg1ZVZnMU0xaFFibGhzV0RVclYzcHRVMHRDVFRGSlYyTm5ZWGRvVUVSWFJEY0tjRWR5VWs5UFJYTnFSMmxMUmpkV1ZDOW5Nalo0ZWpGVFUwVnVRbXByTkdvM2RuaG5XSFpDVkhKM2FuTndhWEJvU0ZGUldtUkZURkpNTlZwcVpqRnpVZ3A2WTBwa2VWbHVNME5QU2pBM1VXbG9ha0p1U1RORE0ySnZPV00wVmpkbFduZHVNa05yT1d4VU9ETkNRVVZyVUZweWVsZzBVR2d2Y2pCdGJuSktSV0pWQ2xCSWJIWkZZV3RRYjNWVWVrTm1kV0pKVURGdU1GaEZRakZ6UWpWSlJHNTNjREZTWXpGU1NXcGpMMmhvV21jelRYZHlUWGg1TTA1SVZUUjZTbTk0TjBRS1ltcG1Vblp1Y0V3d1pqTkdNVlp6SzJ0cE0zZzVWSGRsV0hCclEydHhXR1ZMTlc1a1Uwb3dZbmNyUVRaU2EydDBkRVpETTNZeU5GSk9OV3R0T0U5UldRcFRjR2RGUXlzeE1sbHhlRmM1TjBKaWJFOVZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZOVFZHYTBGMlZubHlhWEZDUlRRMVZqQnRWMk41VmpjeGVscE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNhMDFSWkZGWmJGaDZaVlpqWVRaUldXTnZTRXN3VGpsalltMXFSbUZ3YTNFeU5HVnVZU3MyYTNadVlqQkRaM0ozUndvMmVYUTJlVGQ1Wm1GM1drODJZVFJxVm5jMEsyOHZTVE55WWpGYWIyZzBTMjlUVUU5MVoyaG9Ra2hCWm1JMFNVRk9NemRDTDB0aE5sSnFOM2hWUjIxTUNrRnhkRlZYUkdocVoyNVVUVXRNVUdob2RtNTRhVVJDVVZNMWNEbE9VVkZ4V0dOV1lWUXlXbEpWZDBFeFRuUkdZbXBUV0c1eFJqTjFjSHBZYWpsUFdsUUtNbEY1VldwRmNFUXdhRzVRUzJWWFlTdDFWREJGZHpaT05VcFRPRUZHTlVOVlNraEdTVkprWTJWRmMxRndSM2hGUTNsb1lsRmpMM3BpY1daNFUyWkxTZ3BFTUd0MFpsbDRWMUJuVGxoNmIyMTZlVFJ2WkdWRWFtTTNaRzlaVTBwSWIwc3hVbWxKUlhGd1Rtd3JkbGd5SzBsYWVUQjFhMnBLV0VkMGJqSXhha1Z0Q25saVJWcHdhVTV0U2xOSFZXVkhUbU5EVDFwb2RFeHFla28zYkRGWk1reHFNekJvZHdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Q4ZGIwYmQ5LWRhODAtNDEyZi05MTc3LWVmMzFkYmNiZDAwNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBvaWRjCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJvaWRjIgogICAgdXNlcjogb2lkYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQG9pZGMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBvaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBJMUtTdDlTMDNaamdtd21VOFJ0bXdyazZOMm82bWVpc1drNkN1ZFFVdk81R3NncVZnR002cEx6NA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUk5NRTFXYjFoRVZFMTZUVlJCZUU1NlJUSk9SRTB3VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVXRCQ2tzNVRFVkhLMDlVVTNVNWVUQm5RVkpZUmtGUE9XeFVXVXRxVUVOQ1JrWjRObTFYV1ZKeGFEQXpRVVp6WkhwTlRXOVBaWEpEVW1oRWIwUkpaU3RwYVRFS056STJPSFI1YVRKclMzZzNaSG9ySzNWeFltdDRWSE56WjNsNWQxUmtiazU2V1VzeFIwZFlPRkIyVlVob01HUnpObXhyZEdWYVQySkdabk50Tm1nMVpBcFFTa3hoUW1GTWNrNXlZbWgyZEROdmQyMXFZbmxsY1daTE1sWkhlbWw2UVdwUWFIWmhTR0ZsYmpBelRsQktlbkZhWjJSNVJURlVUbmhRZUhwdGNuUjFDbEJ1YTFaeWFXTnljMVZPTmpab1UwOUtRV054WTNSclpIWmFXR0ZoWTFSd2IwOVdWRzVHVEZGd1MxcG5Vamt3Um5FeFlTdFFZVk5IUkcxNVpHWXliRXNLVnpsUFVVSTJZVzlpWjA1WlpWWlplWGwwUldSaVlYQkZVMEZCWW1SRFVtTlVWMHgxYVhFNVNIUnlUVzAzU21relZtbHljbmxTZEhCWFpYRkVTa3BMZWdwamNrODBTMVJWWldsWWRtSjJVaTh4TUZSelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSGJDOVlhMlF3U25kdGJFOXVSbkZ1ZWpoWVluQmxlVUZhYW1OTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQk9EUlNPVFJzVlRWUmJYTmtPRzVDZG5OS2RYWXZRbWx2TURJMFZWRnNVMlZDVWxSYVIxRmtOblJRZUVoS0wySlpWQW92WkhCSldsZEdWM0JSUkVwR2NqUk1SR1V4VjJaQ01XTXhZVlJoZEVWR2JtNXBTMmd6TTIxME1rWmxZalp1YUU5cVZrSmxkR1Z0TTJOd2FUWmlZVnBIQ214dFNHc3ZTMjVCT1hWTldETlZaRUZGUkZoSWFUWXdOMkZTVFVGcGVYbEpRekpDU1Vsc05FY3pPVzFGUkhadVVVOUhTM050VEhoaFlYQlFSM0ZZWkhZS1NFMWxOVzR2UzNSUVdsTkdjRUphZEhwalNXaENkR1JhZDI5eFJGVTVOQzlOUzBsT2NXSTVia2RWTURJemFEZDNORzlZT0ZreU1UWTRRVkl3ZWt4SGRncE1ZbVJ0WmpJMFRuWXpWa0pyZUc1Q2JVVTViVU5zZW5WU1kxVlFURzlMYkdGdVl5OTBZekJ3VEdwcVNtNHJTMHBYY21RNE1tVnNkMDlsVHpKbFVtVklDbWRLVjBwS2VtcDBMMGhwSzJkRFZuQTFNMW8xYVZWVloyVTVhRmR3TDA5UllWSkhOQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMWViMTQ1MzAtNWFmNC00NDQ5LTgxMTktZjQ1NDNmMjExODRmLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB3N0Zpb045TzlKbHpuM21vQzJtdVl3bWx3dXU2OWlKTml2dHNxN3B2NXpTUmdseDhUYTBZa2tMNg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2524" + - "2566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:42 GMT + - Wed, 18 Oct 2023 16:43:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +401,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bbcc3de-ce9e-4c2a-af0d-fec5239eac2f + - 1b8f0b9d-c01f-4a5a-b1ee-c597c2212d6c status: 200 OK code: 200 duration: "" @@ -311,19 +412,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/578ed20e-1dd8-4de6-8aa5-552261b9473f method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:38.923863Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:43:38.885896Z","dhcp_enabled":true,"id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:38.885896Z","id":"306fa64d-dde0-4dcc-96d5-519d98391c44","subnet":"172.16.24.0/22","updated_at":"2023-10-18T16:43:38.885896Z"},{"created_at":"2023-10-18T16:43:38.885896Z","id":"0a508f71-c9e0-439d-87b7-b8725789e8ad","subnet":"fd63:256c:45f7:2ea1::/64","updated_at":"2023-10-18T16:43:38.885896Z"}],"tags":[],"updated_at":"2023-10-18T16:43:38.885896Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1477" + - "710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:42 GMT + - Wed, 18 Oct 2023 16:43:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +434,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7060581-d22e-47ed-bead-dfec6d037483 + - 7e68d7e9-a670-488e-adc0-68974663400a status: 200 OK code: 200 duration: "" @@ -344,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIm9pZGMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGZWs5R2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtWNlQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNSNENtSnFXbVV6V2pCRk9FNUVlR3hNTnpCVmIwcFFZVXhsVGk5NFoxbzVZVGg1ZVZnMU0xaFFibGhzV0RVclYzcHRVMHRDVFRGSlYyTm5ZWGRvVUVSWFJEY0tjRWR5VWs5UFJYTnFSMmxMUmpkV1ZDOW5Nalo0ZWpGVFUwVnVRbXByTkdvM2RuaG5XSFpDVkhKM2FuTndhWEJvU0ZGUldtUkZURkpNTlZwcVpqRnpVZ3A2WTBwa2VWbHVNME5QU2pBM1VXbG9ha0p1U1RORE0ySnZPV00wVmpkbFduZHVNa05yT1d4VU9ETkNRVVZyVUZweWVsZzBVR2d2Y2pCdGJuSktSV0pWQ2xCSWJIWkZZV3RRYjNWVWVrTm1kV0pKVURGdU1GaEZRakZ6UWpWSlJHNTNjREZTWXpGU1NXcGpMMmhvV21jelRYZHlUWGg1TTA1SVZUUjZTbTk0TjBRS1ltcG1Vblp1Y0V3d1pqTkdNVlp6SzJ0cE0zZzVWSGRsV0hCclEydHhXR1ZMTlc1a1Uwb3dZbmNyUVRaU2EydDBkRVpETTNZeU5GSk9OV3R0T0U5UldRcFRjR2RGUXlzeE1sbHhlRmM1TjBKaWJFOVZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZOVFZHYTBGMlZubHlhWEZDUlRRMVZqQnRWMk41VmpjeGVscE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNhMDFSWkZGWmJGaDZaVlpqWVRaUldXTnZTRXN3VGpsalltMXFSbUZ3YTNFeU5HVnVZU3MyYTNadVlqQkRaM0ozUndvMmVYUTJlVGQ1Wm1GM1drODJZVFJxVm5jMEsyOHZTVE55WWpGYWIyZzBTMjlUVUU5MVoyaG9Ra2hCWm1JMFNVRk9NemRDTDB0aE5sSnFOM2hWUjIxTUNrRnhkRlZYUkdocVoyNVVUVXRNVUdob2RtNTRhVVJDVVZNMWNEbE9VVkZ4V0dOV1lWUXlXbEpWZDBFeFRuUkdZbXBUV0c1eFJqTjFjSHBZYWpsUFdsUUtNbEY1VldwRmNFUXdhRzVRUzJWWFlTdDFWREJGZHpaT05VcFRPRUZHTlVOVlNraEdTVkprWTJWRmMxRndSM2hGUTNsb1lsRmpMM3BpY1daNFUyWkxTZ3BFTUd0MFpsbDRWMUJuVGxoNmIyMTZlVFJ2WkdWRWFtTTNaRzlaVTBwSWIwc3hVbWxKUlhGd1Rtd3JkbGd5SzBsYWVUQjFhMnBLV0VkMGJqSXhha1Z0Q25saVJWcHdhVTV0U2xOSFZXVkhUbU5EVDFwb2RFeHFla28zYkRGWk1reHFNekJvZHdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Q4ZGIwYmQ5LWRhODAtNDEyZi05MTc3LWVmMzFkYmNiZDAwNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBvaWRjCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJvaWRjIgogICAgdXNlcjogb2lkYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQG9pZGMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBvaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBJMUtTdDlTMDNaamdtd21VOFJ0bXdyazZOMm82bWVpc1drNkN1ZFFVdk81R3NncVZnR002cEx6NA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-super-id","groups_claim":["k8s","admin"],"groups_prefix":"pouf","issuer_url":"https://accounts.google.com","required_claim":[],"username_claim":"mario","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:41.662Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2524" + - "1559" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:43 GMT + - Wed, 18 Oct 2023 16:43:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +467,40 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60dd1b99-ae5a-4975-b040-2034b1609d94 + - 8a00ad44-8b1e-4541-a3bf-557ececd9952 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUk5NRTFXYjFoRVZFMTZUVlJCZUU1NlJUSk9SRTB3VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVXRCQ2tzNVRFVkhLMDlVVTNVNWVUQm5RVkpZUmtGUE9XeFVXVXRxVUVOQ1JrWjRObTFYV1ZKeGFEQXpRVVp6WkhwTlRXOVBaWEpEVW1oRWIwUkpaU3RwYVRFS056STJPSFI1YVRKclMzZzNaSG9ySzNWeFltdDRWSE56WjNsNWQxUmtiazU2V1VzeFIwZFlPRkIyVlVob01HUnpObXhyZEdWYVQySkdabk50Tm1nMVpBcFFTa3hoUW1GTWNrNXlZbWgyZEROdmQyMXFZbmxsY1daTE1sWkhlbWw2UVdwUWFIWmhTR0ZsYmpBelRsQktlbkZhWjJSNVJURlVUbmhRZUhwdGNuUjFDbEJ1YTFaeWFXTnljMVZPTmpab1UwOUtRV054WTNSclpIWmFXR0ZoWTFSd2IwOVdWRzVHVEZGd1MxcG5Vamt3Um5FeFlTdFFZVk5IUkcxNVpHWXliRXNLVnpsUFVVSTJZVzlpWjA1WlpWWlplWGwwUldSaVlYQkZVMEZCWW1SRFVtTlVWMHgxYVhFNVNIUnlUVzAzU21relZtbHljbmxTZEhCWFpYRkVTa3BMZWdwamNrODBTMVJWWldsWWRtSjJVaTh4TUZSelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSGJDOVlhMlF3U25kdGJFOXVSbkZ1ZWpoWVluQmxlVUZhYW1OTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQk9EUlNPVFJzVlRWUmJYTmtPRzVDZG5OS2RYWXZRbWx2TURJMFZWRnNVMlZDVWxSYVIxRmtOblJRZUVoS0wySlpWQW92WkhCSldsZEdWM0JSUkVwR2NqUk1SR1V4VjJaQ01XTXhZVlJoZEVWR2JtNXBTMmd6TTIxME1rWmxZalp1YUU5cVZrSmxkR1Z0TTJOd2FUWmlZVnBIQ214dFNHc3ZTMjVCT1hWTldETlZaRUZGUkZoSWFUWXdOMkZTVFVGcGVYbEpRekpDU1Vsc05FY3pPVzFGUkhadVVVOUhTM050VEhoaFlYQlFSM0ZZWkhZS1NFMWxOVzR2UzNSUVdsTkdjRUphZEhwalNXaENkR1JhZDI5eFJGVTVOQzlOUzBsT2NXSTVia2RWTURJemFEZDNORzlZT0ZreU1UWTRRVkl3ZWt4SGRncE1ZbVJ0WmpJMFRuWXpWa0pyZUc1Q2JVVTViVU5zZW5WU1kxVlFURzlMYkdGdVl5OTBZekJ3VEdwcVNtNHJTMHBYY21RNE1tVnNkMDlsVHpKbFVtVklDbWRLVjBwS2VtcDBMMGhwSzJkRFZuQTFNMW8xYVZWVloyVTVhRmR3TDA5UllWSkhOQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMWViMTQ1MzAtNWFmNC00NDQ5LTgxMTktZjQ1NDNmMjExODRmLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB3N0Zpb045TzlKbHpuM21vQzJtdVl3bWx3dXU2OWlKTml2dHNxN3B2NXpTUmdseDhUYTBZa2tMNg==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2566" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 89ab8aa1-53bc-47e9-95c0-a66e39f15bd4 status: 200 OK code: 200 duration: "" @@ -379,19 +513,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: PATCH response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:43.230995191Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:47.122321078Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1548" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21f9dec4-56b4-4547-9c04-f6dd2cc84fa2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:47.122321Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1464" + - "1545" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:43 GMT + - Wed, 18 Oct 2023 16:43:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1206cccb-7623-4a95-a1b2-04af97839d1f + - ad693453-8ebe-4f12-a0d9-e9f879df9925 status: 200 OK code: 200 duration: "" @@ -412,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:43.230995Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:48.308500Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1461" + - "1550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:43 GMT + - Wed, 18 Oct 2023 16:43:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f53917e2-ac19-42e8-b5de-6da743298bb1 + - 860abae0-fd99-4df5-b44b-c836c7a517bb status: 200 OK code: 200 duration: "" @@ -445,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:44.337772Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:48.308500Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1466" + - "1550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:48 GMT + - Wed, 18 Oct 2023 16:43:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a8f20d4-fe94-452b-82fe-58fbc59199d2 + - f011e034-5912-4632-ba7d-733092878a60 status: 200 OK code: 200 duration: "" @@ -478,19 +645,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:44.337772Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUk5NRTFXYjFoRVZFMTZUVlJCZUU1NlJUSk9SRTB3VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVXRCQ2tzNVRFVkhLMDlVVTNVNWVUQm5RVkpZUmtGUE9XeFVXVXRxVUVOQ1JrWjRObTFYV1ZKeGFEQXpRVVp6WkhwTlRXOVBaWEpEVW1oRWIwUkpaU3RwYVRFS056STJPSFI1YVRKclMzZzNaSG9ySzNWeFltdDRWSE56WjNsNWQxUmtiazU2V1VzeFIwZFlPRkIyVlVob01HUnpObXhyZEdWYVQySkdabk50Tm1nMVpBcFFTa3hoUW1GTWNrNXlZbWgyZEROdmQyMXFZbmxsY1daTE1sWkhlbWw2UVdwUWFIWmhTR0ZsYmpBelRsQktlbkZhWjJSNVJURlVUbmhRZUhwdGNuUjFDbEJ1YTFaeWFXTnljMVZPTmpab1UwOUtRV054WTNSclpIWmFXR0ZoWTFSd2IwOVdWRzVHVEZGd1MxcG5Vamt3Um5FeFlTdFFZVk5IUkcxNVpHWXliRXNLVnpsUFVVSTJZVzlpWjA1WlpWWlplWGwwUldSaVlYQkZVMEZCWW1SRFVtTlVWMHgxYVhFNVNIUnlUVzAzU21relZtbHljbmxTZEhCWFpYRkVTa3BMZWdwamNrODBTMVJWWldsWWRtSjJVaTh4TUZSelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSGJDOVlhMlF3U25kdGJFOXVSbkZ1ZWpoWVluQmxlVUZhYW1OTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQk9EUlNPVFJzVlRWUmJYTmtPRzVDZG5OS2RYWXZRbWx2TURJMFZWRnNVMlZDVWxSYVIxRmtOblJRZUVoS0wySlpWQW92WkhCSldsZEdWM0JSUkVwR2NqUk1SR1V4VjJaQ01XTXhZVlJoZEVWR2JtNXBTMmd6TTIxME1rWmxZalp1YUU5cVZrSmxkR1Z0TTJOd2FUWmlZVnBIQ214dFNHc3ZTMjVCT1hWTldETlZaRUZGUkZoSWFUWXdOMkZTVFVGcGVYbEpRekpDU1Vsc05FY3pPVzFGUkhadVVVOUhTM050VEhoaFlYQlFSM0ZZWkhZS1NFMWxOVzR2UzNSUVdsTkdjRUphZEhwalNXaENkR1JhZDI5eFJGVTVOQzlOUzBsT2NXSTVia2RWTURJemFEZDNORzlZT0ZreU1UWTRRVkl3ZWt4SGRncE1ZbVJ0WmpJMFRuWXpWa0pyZUc1Q2JVVTViVU5zZW5WU1kxVlFURzlMYkdGdVl5OTBZekJ3VEdwcVNtNHJTMHBYY21RNE1tVnNkMDlsVHpKbFVtVklDbWRLVjBwS2VtcDBMMGhwSzJkRFZuQTFNMW8xYVZWVloyVTVhRmR3TDA5UllWSkhOQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMWViMTQ1MzAtNWFmNC00NDQ5LTgxMTktZjQ1NDNmMjExODRmLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB3N0Zpb045TzlKbHpuM21vQzJtdVl3bWx3dXU2OWlKTml2dHNxN3B2NXpTUmdseDhUYTBZa2tMNg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1466" + - "2566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:48 GMT + - Wed, 18 Oct 2023 16:43:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f47ee5d0-1c91-4712-b14c-f24da01b1325 + - e08cb850-7094-4c58-8ca7-cc2a9a10d2c9 status: 200 OK code: 200 duration: "" @@ -511,19 +678,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIm9pZGMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGZWs5R2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtWNlQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNSNENtSnFXbVV6V2pCRk9FNUVlR3hNTnpCVmIwcFFZVXhsVGk5NFoxbzVZVGg1ZVZnMU0xaFFibGhzV0RVclYzcHRVMHRDVFRGSlYyTm5ZWGRvVUVSWFJEY0tjRWR5VWs5UFJYTnFSMmxMUmpkV1ZDOW5Nalo0ZWpGVFUwVnVRbXByTkdvM2RuaG5XSFpDVkhKM2FuTndhWEJvU0ZGUldtUkZURkpNTlZwcVpqRnpVZ3A2WTBwa2VWbHVNME5QU2pBM1VXbG9ha0p1U1RORE0ySnZPV00wVmpkbFduZHVNa05yT1d4VU9ETkNRVVZyVUZweWVsZzBVR2d2Y2pCdGJuSktSV0pWQ2xCSWJIWkZZV3RRYjNWVWVrTm1kV0pKVURGdU1GaEZRakZ6UWpWSlJHNTNjREZTWXpGU1NXcGpMMmhvV21jelRYZHlUWGg1TTA1SVZUUjZTbTk0TjBRS1ltcG1Vblp1Y0V3d1pqTkdNVlp6SzJ0cE0zZzVWSGRsV0hCclEydHhXR1ZMTlc1a1Uwb3dZbmNyUVRaU2EydDBkRVpETTNZeU5GSk9OV3R0T0U5UldRcFRjR2RGUXlzeE1sbHhlRmM1TjBKaWJFOVZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZOVFZHYTBGMlZubHlhWEZDUlRRMVZqQnRWMk41VmpjeGVscE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNhMDFSWkZGWmJGaDZaVlpqWVRaUldXTnZTRXN3VGpsalltMXFSbUZ3YTNFeU5HVnVZU3MyYTNadVlqQkRaM0ozUndvMmVYUTJlVGQ1Wm1GM1drODJZVFJxVm5jMEsyOHZTVE55WWpGYWIyZzBTMjlUVUU5MVoyaG9Ra2hCWm1JMFNVRk9NemRDTDB0aE5sSnFOM2hWUjIxTUNrRnhkRlZYUkdocVoyNVVUVXRNVUdob2RtNTRhVVJDVVZNMWNEbE9VVkZ4V0dOV1lWUXlXbEpWZDBFeFRuUkdZbXBUV0c1eFJqTjFjSHBZYWpsUFdsUUtNbEY1VldwRmNFUXdhRzVRUzJWWFlTdDFWREJGZHpaT05VcFRPRUZHTlVOVlNraEdTVkprWTJWRmMxRndSM2hGUTNsb1lsRmpMM3BpY1daNFUyWkxTZ3BFTUd0MFpsbDRWMUJuVGxoNmIyMTZlVFJ2WkdWRWFtTTNaRzlaVTBwSWIwc3hVbWxKUlhGd1Rtd3JkbGd5SzBsYWVUQjFhMnBLV0VkMGJqSXhha1Z0Q25saVJWcHdhVTV0U2xOSFZXVkhUbU5EVDFwb2RFeHFla28zYkRGWk1reHFNekJvZHdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Q4ZGIwYmQ5LWRhODAtNDEyZi05MTc3LWVmMzFkYmNiZDAwNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBvaWRjCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJvaWRjIgogICAgdXNlcjogb2lkYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQG9pZGMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBvaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBJMUtTdDlTMDNaamdtd21VOFJ0bXdyazZOMm82bWVpc1drNkN1ZFFVdk81R3NncVZnR002cEx6NA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:48.308500Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2524" + - "1550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:48 GMT + - Wed, 18 Oct 2023 16:43:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 818677c0-a06d-4b78-ba78-738f5d23fe69 + - c42681d6-d1cd-4a07-9996-6339538d677e status: 200 OK code: 200 duration: "" @@ -544,19 +711,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/578ed20e-1dd8-4de6-8aa5-552261b9473f method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:44.337772Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:43:38.885896Z","dhcp_enabled":true,"id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","name":"test-oidc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:38.885896Z","id":"306fa64d-dde0-4dcc-96d5-519d98391c44","subnet":"172.16.24.0/22","updated_at":"2023-10-18T16:43:38.885896Z"},{"created_at":"2023-10-18T16:43:38.885896Z","id":"0a508f71-c9e0-439d-87b7-b8725789e8ad","subnet":"fd63:256c:45f7:2ea1::/64","updated_at":"2023-10-18T16:43:38.885896Z"}],"tags":[],"updated_at":"2023-10-18T16:43:38.885896Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1466" + - "710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:48 GMT + - Wed, 18 Oct 2023 16:43:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ed01a15-bc48-48af-b372-33840bce0664 + - ea1e97e4-dfe1-4b47-9361-99971adfc5dc status: 200 OK code: 200 duration: "" @@ -577,19 +744,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:44.337772Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:48.308500Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1466" + - "1550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:48 GMT + - Wed, 18 Oct 2023 16:43:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f579424-4426-4e81-a29b-a941abd03563 + - a6b909fc-6303-4837-99f2-1335b6ec85c4 status: 200 OK code: 200 duration: "" @@ -610,19 +777,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIm9pZGMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGZWs5R2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtWNlQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNSNENtSnFXbVV6V2pCRk9FNUVlR3hNTnpCVmIwcFFZVXhsVGk5NFoxbzVZVGg1ZVZnMU0xaFFibGhzV0RVclYzcHRVMHRDVFRGSlYyTm5ZWGRvVUVSWFJEY0tjRWR5VWs5UFJYTnFSMmxMUmpkV1ZDOW5Nalo0ZWpGVFUwVnVRbXByTkdvM2RuaG5XSFpDVkhKM2FuTndhWEJvU0ZGUldtUkZURkpNTlZwcVpqRnpVZ3A2WTBwa2VWbHVNME5QU2pBM1VXbG9ha0p1U1RORE0ySnZPV00wVmpkbFduZHVNa05yT1d4VU9ETkNRVVZyVUZweWVsZzBVR2d2Y2pCdGJuSktSV0pWQ2xCSWJIWkZZV3RRYjNWVWVrTm1kV0pKVURGdU1GaEZRakZ6UWpWSlJHNTNjREZTWXpGU1NXcGpMMmhvV21jelRYZHlUWGg1TTA1SVZUUjZTbTk0TjBRS1ltcG1Vblp1Y0V3d1pqTkdNVlp6SzJ0cE0zZzVWSGRsV0hCclEydHhXR1ZMTlc1a1Uwb3dZbmNyUVRaU2EydDBkRVpETTNZeU5GSk9OV3R0T0U5UldRcFRjR2RGUXlzeE1sbHhlRmM1TjBKaWJFOVZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZOVFZHYTBGMlZubHlhWEZDUlRRMVZqQnRWMk41VmpjeGVscE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNhMDFSWkZGWmJGaDZaVlpqWVRaUldXTnZTRXN3VGpsalltMXFSbUZ3YTNFeU5HVnVZU3MyYTNadVlqQkRaM0ozUndvMmVYUTJlVGQ1Wm1GM1drODJZVFJxVm5jMEsyOHZTVE55WWpGYWIyZzBTMjlUVUU5MVoyaG9Ra2hCWm1JMFNVRk9NemRDTDB0aE5sSnFOM2hWUjIxTUNrRnhkRlZYUkdocVoyNVVUVXRNVUdob2RtNTRhVVJDVVZNMWNEbE9VVkZ4V0dOV1lWUXlXbEpWZDBFeFRuUkdZbXBUV0c1eFJqTjFjSHBZYWpsUFdsUUtNbEY1VldwRmNFUXdhRzVRUzJWWFlTdDFWREJGZHpaT05VcFRPRUZHTlVOVlNraEdTVkprWTJWRmMxRndSM2hGUTNsb1lsRmpMM3BpY1daNFUyWkxTZ3BFTUd0MFpsbDRWMUJuVGxoNmIyMTZlVFJ2WkdWRWFtTTNaRzlaVTBwSWIwc3hVbWxKUlhGd1Rtd3JkbGd5SzBsYWVUQjFhMnBLV0VkMGJqSXhha1Z0Q25saVJWcHdhVTV0U2xOSFZXVkhUbU5EVDFwb2RFeHFla28zYkRGWk1reHFNekJvZHdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Q4ZGIwYmQ5LWRhODAtNDEyZi05MTc3LWVmMzFkYmNiZDAwNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBvaWRjCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJvaWRjIgogICAgdXNlcjogb2lkYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQG9pZGMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBvaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBJMUtTdDlTMDNaamdtd21VOFJ0bXdyazZOMm82bWVpc1drNkN1ZFFVdk81R3NncVZnR002cEx6NA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRrUk5NRTFXYjFoRVZFMTZUVlJCZUU1NlJUSk9SRTB3VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVXRCQ2tzNVRFVkhLMDlVVTNVNWVUQm5RVkpZUmtGUE9XeFVXVXRxVUVOQ1JrWjRObTFYV1ZKeGFEQXpRVVp6WkhwTlRXOVBaWEpEVW1oRWIwUkpaU3RwYVRFS056STJPSFI1YVRKclMzZzNaSG9ySzNWeFltdDRWSE56WjNsNWQxUmtiazU2V1VzeFIwZFlPRkIyVlVob01HUnpObXhyZEdWYVQySkdabk50Tm1nMVpBcFFTa3hoUW1GTWNrNXlZbWgyZEROdmQyMXFZbmxsY1daTE1sWkhlbWw2UVdwUWFIWmhTR0ZsYmpBelRsQktlbkZhWjJSNVJURlVUbmhRZUhwdGNuUjFDbEJ1YTFaeWFXTnljMVZPTmpab1UwOUtRV054WTNSclpIWmFXR0ZoWTFSd2IwOVdWRzVHVEZGd1MxcG5Vamt3Um5FeFlTdFFZVk5IUkcxNVpHWXliRXNLVnpsUFVVSTJZVzlpWjA1WlpWWlplWGwwUldSaVlYQkZVMEZCWW1SRFVtTlVWMHgxYVhFNVNIUnlUVzAzU21relZtbHljbmxTZEhCWFpYRkVTa3BMZWdwamNrODBTMVJWWldsWWRtSjJVaTh4TUZSelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSGJDOVlhMlF3U25kdGJFOXVSbkZ1ZWpoWVluQmxlVUZhYW1OTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQk9EUlNPVFJzVlRWUmJYTmtPRzVDZG5OS2RYWXZRbWx2TURJMFZWRnNVMlZDVWxSYVIxRmtOblJRZUVoS0wySlpWQW92WkhCSldsZEdWM0JSUkVwR2NqUk1SR1V4VjJaQ01XTXhZVlJoZEVWR2JtNXBTMmd6TTIxME1rWmxZalp1YUU5cVZrSmxkR1Z0TTJOd2FUWmlZVnBIQ214dFNHc3ZTMjVCT1hWTldETlZaRUZGUkZoSWFUWXdOMkZTVFVGcGVYbEpRekpDU1Vsc05FY3pPVzFGUkhadVVVOUhTM050VEhoaFlYQlFSM0ZZWkhZS1NFMWxOVzR2UzNSUVdsTkdjRUphZEhwalNXaENkR1JhZDI5eFJGVTVOQzlOUzBsT2NXSTVia2RWTURJemFEZDNORzlZT0ZreU1UWTRRVkl3ZWt4SGRncE1ZbVJ0WmpJMFRuWXpWa0pyZUc1Q2JVVTViVU5zZW5WU1kxVlFURzlMYkdGdVl5OTBZekJ3VEdwcVNtNHJTMHBYY21RNE1tVnNkMDlsVHpKbFVtVklDbWRLVjBwS2VtcDBMMGhwSzJkRFZuQTFNMW8xYVZWVloyVTVhRmR3TDA5UllWSkhOQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMWViMTQ1MzAtNWFmNC00NDQ5LTgxMTktZjQ1NDNmMjExODRmLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3Qtb2lkYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1vaWRjIgogICAgdXNlcjogdGVzdC1vaWRjLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1vaWRjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1vaWRjLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB3N0Zpb045TzlKbHpuM21vQzJtdVl3bWx3dXU2OWlKTml2dHNxN3B2NXpTUmdseDhUYTBZa2tMNg==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2524" + - "2566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:48 GMT + - Wed, 18 Oct 2023 16:43:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7bc972a-6698-4fb2-bb41-3af3f71475b2 + - 3ed1810f-269c-4eb3-8d13-e3077b5518a5 status: 200 OK code: 200 duration: "" @@ -643,19 +810,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f?with_additional_resources=true method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:49.044292042Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:53.575656545Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1464" + - "1548" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:49 GMT + - Wed, 18 Oct 2023 16:43:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ba9c658-88d7-406d-8265-4c2664b6ad11 + - c42e5a03-a854-483d-85a3-be00f1b02a19 status: 200 OK code: 200 duration: "" @@ -676,19 +843,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d8db0bd9-da80-412f-9177-ef31dbcbd004.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:21:37.116075Z","created_at":"2023-09-01T16:21:37.116075Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d8db0bd9-da80-412f-9177-ef31dbcbd004.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","ingress":"none","name":"oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-09-01T16:21:49.044292Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://1eb14530-5af4-4449-8119-f4543f21184f.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:40.198151Z","created_at":"2023-10-18T16:43:40.198151Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.1eb14530-5af4-4449-8119-f4543f21184f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"1eb14530-5af4-4449-8119-f4543f21184f","ingress":"none","name":"test-oidc","open_id_connect_config":{"client_id":"my-even-more-awesome-id","groups_claim":[],"groups_prefix":"","issuer_url":"https://gitlab.com","required_claim":[],"username_claim":"luigi","username_prefix":"boo"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"type":"kapsule","updated_at":"2023-10-18T16:43:53.575657Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1461" + - "1545" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:49 GMT + - Wed, 18 Oct 2023 16:43:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2bbd3b3-544e-4be2-b88c-a8c40cec3268 + - 0e18ea20-488d-46d4-8e5a-14bc0ab956d8 status: 200 OK code: 200 duration: "" @@ -709,10 +876,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"1eb14530-5af4-4449-8119-f4543f21184f","type":"not_found"}' headers: Content-Length: - "128" @@ -721,7 +888,40 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:54 GMT + - Wed, 18 Oct 2023 16:43:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 171f5a10-1c23-48f7-b89a-c4bb93272598 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/578ed20e-1dd8-4de6-8aa5-552261b9473f + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"578ed20e-1dd8-4de6-8aa5-552261b9473f","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a732b0bf-b75c-4df4-a89b-b85e1e47d076 + - 7fe785e0-423b-489e-8864-92858cef33bc status: 404 Not Found code: 404 duration: "" @@ -742,10 +942,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d8db0bd9-da80-412f-9177-ef31dbcbd004 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/1eb14530-5af4-4449-8119-f4543f21184f method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"d8db0bd9-da80-412f-9177-ef31dbcbd004","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"1eb14530-5af4-4449-8119-f4543f21184f","type":"not_found"}' headers: Content-Length: - "128" @@ -754,7 +954,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:54 GMT + - Wed, 18 Oct 2023 16:43:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab45c720-b1d7-41cb-94d7-55eb1172e0cf + - 1a269f47-caa7-477e-8178-e4a1e1be0b75 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-pool-basic.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-basic.cassette.yaml index 682a7a3b1a..abe2b3d323 100644 --- a/scaleway/testdata/k8s-cluster-pool-basic.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-pool-basic.cassette.yaml @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:21 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,80 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffdcccfc-db8d-42df-a933-c5b6eb11fcf6 + - 4d724333-39a9-4c13-9b2f-a1ddb381335f status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"K8SPoolConfigMinimal","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-pool-minimal","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-18T16:43:19.912799Z","dhcp_enabled":true,"id":"86352ce5-787c-449c-9998-79898166204d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:19.912799Z","id":"e8dae137-1a4b-466e-835a-826dcf62fdd7","subnet":"172.16.40.0/22","updated_at":"2023-10-18T16:43:19.912799Z"},{"created_at":"2023-10-18T16:43:19.912799Z","id":"7ecbb54d-39e3-4c8a-b892-21165c91b24f","subnet":"fd63:256c:45f7:af6c::/64","updated_at":"2023-10-18T16:43:19.912799Z"}],"tags":[],"updated_at":"2023-10-18T16:43:19.912799Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "718" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e7bf876-e32a-494e-90c3-d8bad8dad5ef + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/86352ce5-787c-449c-9998-79898166204d + method: GET + response: + body: '{"created_at":"2023-10-18T16:43:19.912799Z","dhcp_enabled":true,"id":"86352ce5-787c-449c-9998-79898166204d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:19.912799Z","id":"e8dae137-1a4b-466e-835a-826dcf62fdd7","subnet":"172.16.40.0/22","updated_at":"2023-10-18T16:43:19.912799Z"},{"created_at":"2023-10-18T16:43:19.912799Z","id":"7ecbb54d-39e3-4c8a-b892-21165c91b24f","subnet":"fd63:256c:45f7:af6c::/64","updated_at":"2023-10-18T16:43:19.912799Z"}],"tags":[],"updated_at":"2023-10-18T16:43:19.912799Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "718" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0bd607bc-729c-4b97-8998-7c9a3ecb176a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-minimal","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"86352ce5-787c-449c-9998-79898166204d"}' form: {} headers: Content-Type: @@ -50,16 +118,1239 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771786944Z","created_at":"2023-10-17T10:00:26.771786944Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:00:26.799326474Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294369Z","created_at":"2023-10-18T16:43:21.169294369Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:43:21.195949857Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1509" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0447c4f7-2346-47c2-82f2-e66effad6000 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:43:21.195950Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1500" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a990f7f-1a15-4398-8bdf-0cf2e1114d52 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:43:24.648443Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1505" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 116cdb12-186c-420c-bc70-e73235ec83c7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:43:24.648443Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1505" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb2035f6-8421-4070-8426-25ac5182c11d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTmVVMXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMTVUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYZzRDbmhMZVU4NGFIaFdaVVJGYTA0eWRtOUxjRlJzZDBoSlNrUXJiMlY0WjJaQllVUkNiV3B2YTBoSFZTdGxjekp5WkhWWE5qbEdiR3RWYWpaRlVGQjBiUzhLUm5sQ1NrUjBlR1JxWjFnelRsTlNVelppYVRGM1QwUnpSMnRwVEU1bloxcG9kRlIwVjFNM1RsaHZkeTl6VGpncmNUVXlkVWg2VURCcmNrbHdUMkZyT0FwalpscG5ORVo2VVhsMFpXOXJTbGMxTUd4eVlsZHROVW8wYzFaVEwwdGxibFI1T1UxM1NsRlRORU0yZW5oMlIweGtlakZUTjJGaFNXaHRLMHhNT1U5bkNtaDBMMGRNV1RGS1RVNXFPVXd3UXpaRVFuVTJiV2hoT0dOSGFVMUNSbUU1VFdWTWFrcE5Namt4V1ROU1lYQk1OR3hVUkhBekt6ZEVNemREUjA4MlJVZ0tRblJ5UVdaMmQxVnFkbXhLTVRKM2QySlZZbVZTTWtaaWJEaFlhMU5VUzFWRVQwdHRSbWhoVFRnNFZtSnpNamxOTTBGck1VeHNhMnBxUldKNVdHNUllQXBaWTJOMllqSXdaazlzVDBKRVpsaG9ORUV3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpDTVVab2RYSTVUVGhaTTJwa2MzbFVlbUp1ZDNGSlZHSjJSakpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDTkVneFdFbDNNVkZ4VG1oWGNtb3dZbGxZTm10NmVuSkpjMEZTYVVJdlpFTkliSEZGYzBkRkwyRktVVlJ6Y25CUlZncFNSWHB5VFVzNFZuUm9Za3huUzNwblQwRmFObkJYV1hWRmFuTkZTbnBoU0ZsdE1EbDNhRFZNTUZGUWQwTnVUaXRUU25FNE1uUmxkRU0wT0RoM2JGbFJDbGwwYlVscU5VZExOVW8zYWxocFUzWjNSa016YlVwTFVHMTVhSFpIU2tGV1lWRlNSMWR2WVVORVJIcG5VMjVOUTBwbWVYTTBTSHBFY0VGSWNHbHFWRmdLTUhSclNFcENVMk0wYlVWWlNXbEZiRTlTUVhSNEswdFRhMGhFYkRWSmNFVkxZM1ptWVRnMmFXTlRPR1JDU1dKSVMyaEVVV2htTnpsUE9ERTRWVTVWUndveWFqUmFSbTlsU2xBcmRHcE9XRnBITkhobWMyRnNSVXBMWWtSb1VYZEtZa2xWWTBONk5VaFFUREpHWms1amQzZ3lOREZ3ZGk5b1dpdEthR3hDV2prNUNubGtPVGg1V2xweFlsaFNWWEJIUm1VdlNrcHNXa2hHVWxOTVJrbDBhVXA2U2taNE1Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly80MjJmM2EwZi04NjcyLTQ3ZDAtYmE0My1lNmY3MGZlNTczZDMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIVU1YeENkOFd0MnJRSnRvWmdqN3pVcUxSa2UwdHp6Vm9aT0Rvb3JUdURFcjltT2Zxc0NlMXU0Uw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2630" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2388ef4d-d82b-493f-9173-d14caf39a02a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:43:24.648443Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1505" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 22f61ce1-f704-4dad-b3bf-5a3a02746610 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/pools + method: POST + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465424Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d7f75786-33bc-45a5-93ca-d8468a012ec6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d2bbff2b-6866-4e33-b597-00c8faa10251 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68aca5be-5ed1-4244-ae44-e4647230f1ca + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:36 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83078717-eb30-439c-b540-c781402d8af8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6a43c14-cdf8-45f2-9096-ea715d02c7b7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5af619af-0b55-45b6-9d67-7d896843a7c7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a72987ed-c286-4af3-b14c-461d1bce2ead + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:57 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb08b17d-4ef6-4db7-aa49-9d8aeb4f081e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e4db044f-a9a9-4763-b122-d3cdf2df7324 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:07 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa1d9707-1a66-4bfa-8336-c0ce2783511a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c7d3ec95-89d0-49cd-9567-3209d1afca6b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3bf22598-2880-447f-b3bf-1671e7d8fdff + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f57391b5-793e-4e35-ba46-e4273cafc574 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:27 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb96fd23-b62f-4988-a63e-f25aa2766e1a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b9232651-1e80-4ccc-b099-94e2b2a67eb9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b0ff2eb3-ec20-4107-8669-a303c15fcade + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e0c7240-b083-4641-a548-7e16c1f93f71 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b572c801-380c-4652-b0d2-e2b63d85991d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 98e3601b-60e1-4412-aa12-a6ec0b000656 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:57 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ab2e2b89-73c3-4366-ad20-1dad758b014d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:45:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ffaa690-bad3-4c1a-97b9-f9ea3bb4a961 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:45:07 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b55d5f2-72d8-431d-a4bb-27967f959dbc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:45:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f117b0ef-ef43-4371-b247-5592bf825e71 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:45:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2960e96c-eb95-4e2e-ab0b-f9c80dce60b0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:45:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9967280b-9b4d-4a04-b1cc-5b311fbf47af + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:45:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 459a5318-08f7-46a3-8836-d91c34a55886 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:45:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0bba4fe3-2a71-4565-9047-52823fd5f31a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:45:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6fa9aa1f-3ffb-4ebd-a2c5-4e6d2c04f244 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:45:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d028f3c0-8aa8-4441-abcf-97999dc29e42 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:45:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1106484e-6290-49e3-aa98-4345fe303d3a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:45:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ab01854-26de-4ce3-b5a7-5411f87e4996 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1478" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:26 GMT + - Wed, 18 Oct 2023 16:45:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +1360,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51c63b32-2569-41e8-8e7c-0de4cf2c5ec1 + - 46cd6b68-2015-45e4-b30a-7ef90d43b2b7 status: 200 OK code: 200 duration: "" @@ -80,19 +1371,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:00:26.799326Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1469" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:26 GMT + - Wed, 18 Oct 2023 16:46:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,7 +1393,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 846fde90-46df-4188-8017-8761315994ac + - bde805bb-51c9-4163-8ec1-ed3b5481c970 status: 200 OK code: 200 duration: "" @@ -113,19 +1404,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.636683Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1474" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:31 GMT + - Wed, 18 Oct 2023 16:46:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -135,7 +1426,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 358d82ff-413f-4203-b119-5ac26f55af09 + - 56ae732a-cb9f-48b6-9fc0-bc3552d90290 status: 200 OK code: 200 duration: "" @@ -146,19 +1437,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.636683Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1474" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:46:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +1459,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5f2485e-eb7f-4cc4-8a8c-7bee1b3549d9 + - 55b30172-f0f0-456e-b304-5e05551a0c19 status: 200 OK code: 200 duration: "" @@ -179,19 +1470,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQwaERDa2czU2s4elRrZ3hMeTk0WkU5emVYb3hXR1FyVkVGUmJWTktWRmN4VWxaS1VUTXhhbmxFZG1WU05GQkJNRnBYUW1SbmQxUldSMjR4YzJ4VFUyNWFTV2dLYTFSbWVGSmFkemRNT1hScVZWSnNORTFSUmxoNVMwMXdTMjVKTW5Ob2RHTkJURTloVlhacFVrcHRMMU5FZVhaaFVsZDVSVWR0ZFRod2JuWnRWa3AzUWdwblRFeG9SVGMyUkV0NFpFMTNSMFlyYTA5dVVEQnFRV3BvV0hGcloyUlFLMHQwZDJ0SWNsSkxXa1YzUlc1V1VGRnNkRUpaYkc1YVdVWjZVRTFPZUZFNENtTkhTV2hhTDI5VWQyZzJVelJIVDNveWVsVktRVEptT0d4SFIzSlRjSGh0T0ZGVVFWTnlWSFpMVkUxV2JsTlJhRlE0UVdSWlYxWnRkVmhpTTNnMlNYb0tNWElyVkRkblUwMWFWVnBwTUhZMGJVSjVVRGd2ZEZGb2VqQlBVR3RsTW5SdFFYbFBiMHN3U1cxc2JsY3hTM3BwY1U4MU5XdHZOMXBoYmpoalNuUjBRZ3BuZFd4TE1HaHdkRVU1V1RreWRuUTNaM2hWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGYjBZMGREbG9kM1pxWlZkR1lVNHlTVXhpWTFkdFRtRlRaMFZOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVGpZemFIUTRhRzFPY1N0TWJpOVdkVzFxT0RORFZtOW9kMHR1VmxOS1FVVjBXV2xMUWpOcFRERlhiVzVWVDJsdVZncE9SMjlRZUUxUFJTdEdjRFJqTDJwWU4wTjJVblJEV0RScmNHNVdUU3RQUW5SUlEzRkxaVzV0U2pac1VHZFpUbU00YjBGUWNESmtPVE5RTTNBNWFGbFpDa1V2WVhSd1dUSTFVR1YyZDFkT2NtcHZjMHBGWVhOck4xVnBkRmRSZEVoeVJtOXFRMGRwVTBWRlFVcGFOVkV5YzFOaWJYWkRTRFZHTUZwbFJEVk1SVkFLVDJvM1ZVVXpOMnRDTDJKek9ESnplbUY2UXl0S2FWWjVRVzVOTkZGdWJqQkxkbTV2WkdKTlRGTXpUbFZCWVZaUVR6TXdaRVZyVEVSbVdIcHdhMjQzYWdwWlRVaDZkRVpHWXpoTFVuaG1Xak14T0VKWE5qUTBjSFoyTm1aUGNWWlJOa1pJTWtwaE9FNDBkRmsyTjB4VVJsRTVWelZNVUdKellrOXBUekpxUVRFekNtUnFkMnB6WVdocVdVcEJVRFZVVjNsNlprcHVjMEZHZDFCNlZIbzBSWFJxUlhwMk5nb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9iODM3NzdiOS03MjE2LTQ0OWYtYTBiNS1hZGY2MGY3NjU3OWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ21pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ21pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlnbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWdtaW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA3U3BlNUNXcW5EZlY0Q3JjM0JiVnFXcXRTTGtxTlhENWR4MTc1dVFSc3hLNWNTcHJxV1ZObTdjZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2654" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:46:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,7 +1492,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60e53024-2c41-4e8e-b23c-7f2ef67ef4f1 + - 5d92d6c5-5fe9-4561-bc41-074152eb54f5 status: 200 OK code: 200 duration: "" @@ -212,19 +1503,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.636683Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1474" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:46:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,32 +1525,96 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b0c8b5c-96fa-4644-b140-22560b9b95d5 + - 9b4013ce-2f6d-4b8c-9f23-954f91ed6166 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"default","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 16:46:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8d232c7-6ed6-4420-b952-fcfd3424ef7f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/pools - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:46:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e04f4926-0fcf-4df2-8c7e-77a9366c63d1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 + method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064140Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "671" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:46:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,7 +1624,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca8e6262-f70f-4242-b2be-b4a4b80cf1ad + - 70eb6a94-7433-418d-8c8e-c05ed5fa96c2 status: 200 OK code: 200 duration: "" @@ -280,19 +1635,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:46:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +1657,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 150ea58d-33be-46e0-b10d-2cd0b431cd45 + - 1b2a619f-ab38-4cfa-8a27-808282321f84 status: 200 OK code: 200 duration: "" @@ -313,19 +1668,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:37 GMT + - Wed, 18 Oct 2023 16:46:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -335,7 +1690,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e32a1bac-0ef2-4fc6-b3b2-56fffe7b8e4c + - 3f9b3b17-733f-458c-bc6b-b5dbb0ed91bf status: 200 OK code: 200 duration: "" @@ -346,19 +1701,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:42 GMT + - Wed, 18 Oct 2023 16:46:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -368,7 +1723,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9556bb14-ae9a-44af-a0fe-534f2a79f294 + - e475284f-dadd-4a83-a97a-d165d7182304 status: 200 OK code: 200 duration: "" @@ -379,19 +1734,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:48 GMT + - Wed, 18 Oct 2023 16:46:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +1756,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8ffda26-49df-4fd3-ab67-67b24d9ad94e + - ed7fe71c-b3dc-4b21-9b20-3482b367bf4b status: 200 OK code: 200 duration: "" @@ -412,19 +1767,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:53 GMT + - Wed, 18 Oct 2023 16:47:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +1789,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92f5fda2-cbe4-4585-8fec-846d21679f70 + - f4013bb9-9a6b-424b-a6b6-5c5847757517 status: 200 OK code: 200 duration: "" @@ -445,19 +1800,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:59 GMT + - Wed, 18 Oct 2023 16:47:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +1822,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c26caca8-623f-4c12-8398-aea770e04285 + - 80493207-223a-47d5-8dd2-aafeccf1a4a0 status: 200 OK code: 200 duration: "" @@ -478,19 +1833,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:05 GMT + - Wed, 18 Oct 2023 16:47:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +1855,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a63038a2-ae52-4574-af50-42fdff4b0dee + - a67b3cfa-f196-4fc7-8829-9f8fe88d959b status: 200 OK code: 200 duration: "" @@ -511,19 +1866,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:10 GMT + - Wed, 18 Oct 2023 16:47:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +1888,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4b67d7c-dbb4-49a7-84ae-6f3e01b722ba + - 482dcb4a-5221-46fc-b3ab-f1535beb131f status: 200 OK code: 200 duration: "" @@ -544,19 +1899,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:15 GMT + - Wed, 18 Oct 2023 16:47:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +1921,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49d09858-c039-458f-996f-da2ee78b0fcd + - 88092092-f8c0-4b3c-a5d5-cbbe36e91b22 status: 200 OK code: 200 duration: "" @@ -577,19 +1932,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:20 GMT + - Wed, 18 Oct 2023 16:47:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +1954,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3b129bd-16a9-4fb4-8480-660152864633 + - 3c530ee3-3691-4982-b4a9-7457afed031c status: 200 OK code: 200 duration: "" @@ -610,19 +1965,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:25 GMT + - Wed, 18 Oct 2023 16:47:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,7 +1987,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 659ab8ee-56f6-47ba-8901-28e8bce92304 + - 8256a5ec-620c-46fc-bb63-23b799126ff3 status: 200 OK code: 200 duration: "" @@ -643,19 +1998,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:30 GMT + - Wed, 18 Oct 2023 16:47:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +2020,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54f1e6d4-5fe5-4f18-89a1-d89c91dec768 + - 8468bcd4-f449-423f-a605-a540df7bb0a1 status: 200 OK code: 200 duration: "" @@ -676,19 +2031,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:35 GMT + - Wed, 18 Oct 2023 16:47:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,7 +2053,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef0a0aea-ea97-4a65-804e-76efb535d00a + - 361e5724-f131-48bb-9474-6e9d8b9b39c7 status: 200 OK code: 200 duration: "" @@ -709,19 +2064,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:40 GMT + - Wed, 18 Oct 2023 16:47:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +2086,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb41ff05-9b84-4491-8c1f-7f8f860932e5 + - 7d33cbac-24f4-4daa-b34e-e4a1e527cbfe status: 200 OK code: 200 duration: "" @@ -742,19 +2097,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:46 GMT + - Wed, 18 Oct 2023 16:47:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,7 +2119,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c59cc79a-2322-4ec8-a133-4890299d33a3 + - 4b57e1e0-9c9e-4c2a-8d12-e7b2083eb928 status: 200 OK code: 200 duration: "" @@ -775,19 +2130,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:51 GMT + - Wed, 18 Oct 2023 16:47:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -797,7 +2152,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44ea8b19-b96a-46fb-a0a3-cc28d64ed1d5 + - b8e5ebf3-4cd4-4cda-a2f3-b1ad9cc8f998 status: 200 OK code: 200 duration: "" @@ -808,19 +2163,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:56 GMT + - Wed, 18 Oct 2023 16:48:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -830,7 +2185,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 008a3031-eb0a-4de7-8fda-ba0dc4c92c91 + - c206e65a-683f-49dc-a337-bd3995adf294 status: 200 OK code: 200 duration: "" @@ -841,19 +2196,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:01 GMT + - Wed, 18 Oct 2023 16:48:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -863,7 +2218,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36564ff6-f080-4c3b-81f0-a8e95a3f7fb1 + - c4b60799-af24-4942-94f0-36b5ee7fe4d8 status: 200 OK code: 200 duration: "" @@ -874,19 +2229,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:06 GMT + - Wed, 18 Oct 2023 16:48:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -896,7 +2251,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77f69b76-6a51-4be0-883e-04c7860a4906 + - e02d0f72-975d-4d4a-9e5d-3507193dc50d status: 200 OK code: 200 duration: "" @@ -907,19 +2262,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:11 GMT + - Wed, 18 Oct 2023 16:48:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +2284,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 354898cf-5aec-41a6-a0d7-3b6b2e406448 + - 85588d19-8c9e-4021-ad90-a0ae15b9309e status: 200 OK code: 200 duration: "" @@ -940,19 +2295,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:16 GMT + - Wed, 18 Oct 2023 16:48:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -962,7 +2317,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed8038b7-3887-4289-8b8b-b9a8851c7e53 + - 8a027e90-132b-46fb-9bcc-6a2cd81a8092 status: 200 OK code: 200 duration: "" @@ -973,19 +2328,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:21 GMT + - Wed, 18 Oct 2023 16:48:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -995,7 +2350,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8d00ff9-436d-4940-bf83-d915e34359d0 + - 03bc2119-9722-4603-90a2-43da893ccf1b status: 200 OK code: 200 duration: "" @@ -1006,19 +2361,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:26 GMT + - Wed, 18 Oct 2023 16:48:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1028,7 +2383,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec7df4ba-e433-4912-b8ed-c7a7c7503060 + - 594ccba7-7aaf-408b-b804-a17b835bfdb0 status: 200 OK code: 200 duration: "" @@ -1039,19 +2394,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:31 GMT + - Wed, 18 Oct 2023 16:48:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1061,7 +2416,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0df259b-a819-4811-a94c-046ee2827030 + - 4f64366a-1bd9-4dcd-90bc-8d2c7d319c64 status: 200 OK code: 200 duration: "" @@ -1072,19 +2427,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:36 GMT + - Wed, 18 Oct 2023 16:48:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1094,7 +2449,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2785eaa6-3498-4504-a5a4-baf1fb8edf70 + - e8e4a43a-7204-4129-903c-1528cd4c5f9e status: 200 OK code: 200 duration: "" @@ -1105,19 +2460,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:41 GMT + - Wed, 18 Oct 2023 16:48:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,7 +2482,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c95789bf-da25-4363-8921-1c39bd68dc88 + - a185aa5e-0f90-4728-babf-2db8367abeeb status: 200 OK code: 200 duration: "" @@ -1138,19 +2493,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:46 GMT + - Wed, 18 Oct 2023 16:48:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +2515,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4555b9f8-0e27-4a85-be2b-fa80684d716c + - 397f52c7-6cb1-48db-9acc-5dbd2887a98f status: 200 OK code: 200 duration: "" @@ -1171,19 +2526,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:51 GMT + - Wed, 18 Oct 2023 16:49:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1193,7 +2548,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1cba20a-78e1-4241-8e12-2ff87d7edf66 + - f482cd90-c80d-4f0d-a8a6-de0657049f5d status: 200 OK code: 200 duration: "" @@ -1204,19 +2559,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:56 GMT + - Wed, 18 Oct 2023 16:49:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1226,7 +2581,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e292d67f-73ac-42c2-88af-cb2c698b22cf + - 3d120853-6d5d-4321-a81c-a09828ea2cde status: 200 OK code: 200 duration: "" @@ -1237,19 +2592,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:01 GMT + - Wed, 18 Oct 2023 16:49:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1259,7 +2614,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9662e27-5d5e-408f-8f8e-a15e083c2bc7 + - c54eb0ee-7fbc-4da8-879f-0a44558da85f status: 200 OK code: 200 duration: "" @@ -1270,19 +2625,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:07 GMT + - Wed, 18 Oct 2023 16:49:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1292,7 +2647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 696fc38f-dc45-4fbf-b39d-af6a88d29410 + - 1c32ff57-f872-4cde-9ea4-a5e8d8d1c882 status: 200 OK code: 200 duration: "" @@ -1303,19 +2658,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:12 GMT + - Wed, 18 Oct 2023 16:49:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1325,7 +2680,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee14c454-3c8f-4326-86ab-86d7101382df + - 6447b7f8-7f16-424a-90d1-f2347d669f45 status: 200 OK code: 200 duration: "" @@ -1336,19 +2691,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:17 GMT + - Wed, 18 Oct 2023 16:49:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1358,7 +2713,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3add0a5-7394-4f2f-8afa-6dd38fa9e0f4 + - d4ee6d74-e0ea-4288-9a65-24d9f535f1a2 status: 200 OK code: 200 duration: "" @@ -1369,19 +2724,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:22 GMT + - Wed, 18 Oct 2023 16:49:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1391,7 +2746,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f78f49f6-bdc4-4e78-9421-ca1a776f1c89 + - 1ec368f2-8dd0-493e-b12b-300e7066ddd4 status: 200 OK code: 200 duration: "" @@ -1402,19 +2757,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:27 GMT + - Wed, 18 Oct 2023 16:49:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1424,7 +2779,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83117410-22c9-4bce-916b-a26bd795892d + - 2d99b8db-699a-40bb-b9fa-23becd168d7c status: 200 OK code: 200 duration: "" @@ -1435,19 +2790,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:33 GMT + - Wed, 18 Oct 2023 16:49:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1457,7 +2812,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0bd7be1-5278-4980-9aba-0b25b354225c + - 8cb536c4-952e-464d-aeea-278c5669b77c status: 200 OK code: 200 duration: "" @@ -1468,19 +2823,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:38 GMT + - Wed, 18 Oct 2023 16:49:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1490,7 +2845,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11868514-84f3-4508-8af3-35c0b79bae70 + - 414df701-d652-4652-9ebe-198482e51847 status: 200 OK code: 200 duration: "" @@ -1501,19 +2856,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:43 GMT + - Wed, 18 Oct 2023 16:49:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1523,7 +2878,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45795a41-3bc9-4a13-972c-7fd69b725e74 + - f813a661-ac6c-4d64-a97f-22bd325fad4e status: 200 OK code: 200 duration: "" @@ -1534,19 +2889,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:48 GMT + - Wed, 18 Oct 2023 16:49:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1556,7 +2911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba5d1495-be2c-4be8-b198-40901386fa34 + - be8a8e90-4fec-41b5-888a-343e5824c174 status: 200 OK code: 200 duration: "" @@ -1567,19 +2922,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:53 GMT + - Wed, 18 Oct 2023 16:50:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1589,7 +2944,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a0883ed-fbdc-433e-82a3-2e2075c3ea06 + - 403d8c2b-6422-4f0d-b7fe-0a8d24adc291 status: 200 OK code: 200 duration: "" @@ -1600,19 +2955,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:58 GMT + - Wed, 18 Oct 2023 16:50:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1622,7 +2977,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 844caa31-f263-42e8-b398-836dd7350ccb + - 5d2df25c-7459-499a-bc7b-4e9ba01a3f64 status: 200 OK code: 200 duration: "" @@ -1633,19 +2988,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:03 GMT + - Wed, 18 Oct 2023 16:50:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1655,7 +3010,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7af9b95-841b-4dc2-84f8-a7f982e3c4e4 + - 250cbdc3-1b3c-4e8b-8173-d792fc45e068 status: 200 OK code: 200 duration: "" @@ -1666,19 +3021,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:08 GMT + - Wed, 18 Oct 2023 16:50:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1688,7 +3043,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7e38108-d419-4aea-a15f-436932d6eb63 + - b165c289-1201-4130-89ec-b991aafefd61 status: 200 OK code: 200 duration: "" @@ -1699,19 +3054,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:43:26.647465Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:13 GMT + - Wed, 18 Oct 2023 16:50:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1721,7 +3076,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1f690b6-72a5-48a3-a7a9-75dba4268137 + - 75599431-c7e4-4e7e-987f-5dedbbcf1e14 status: 200 OK code: 200 duration: "" @@ -1732,19 +3087,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:50:25.595417Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:18 GMT + - Wed, 18 Oct 2023 16:50:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1754,7 +3109,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ec294bd-69fc-4a0a-8a0c-ee767edad162 + - 1d05a91a-d000-4d56-a9c4-f0cd7362f3d9 status: 200 OK code: 200 duration: "" @@ -1765,19 +3120,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:45:13.613947Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "668" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:23 GMT + - Wed, 18 Oct 2023 16:50:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1787,7 +3142,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63a8c04d-b129-42b1-bb30-97170e2d3af1 + - 7cd0e3e7-68e0-4000-9629-00875dadda3a status: 200 OK code: 200 duration: "" @@ -1798,19 +3153,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:50:25.595417Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:28 GMT + - Wed, 18 Oct 2023 16:50:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1820,7 +3175,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 236713ce-ab75-4c7e-8d91-2f61b6013131 + - c9fbf4aa-f70e-451d-be07-90abb632766c status: 200 OK code: 200 duration: "" @@ -1831,19 +3186,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/nodes?order_by=created_at_asc&page=1&pool_id=e903ea26-fed8-4d2e-83ac-80da5478e6f6&status=unknown method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:45:22.864846Z","error_message":null,"id":"763cccf3-28bc-4a71-bf3f-50743fa64646","name":"scw-test-pool-minimal-test-pool-minimal-763ccc","pool_id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","provider_id":"scaleway://instance/fr-par-1/c6df0307-f00a-4a58-89b5-7d39cfeff63b","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:50:25.561389Z"}],"total_count":1}' headers: Content-Length: - - "668" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:33 GMT + - Wed, 18 Oct 2023 16:50:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1853,7 +3208,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1200b83-32f6-4b7d-9c9e-61eae601f3b5 + - 09a405b5-f509-4c22-bbe5-cca17bac5a87 status: 200 OK code: 200 duration: "" @@ -1864,19 +3219,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:45:13.613947Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "668" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:38 GMT + - Wed, 18 Oct 2023 16:50:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1886,7 +3241,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3a442f8-f8d2-41dd-8e7e-4c79abc41781 + - 99d790cb-a29b-49b3-9506-77fcada0242c status: 200 OK code: 200 duration: "" @@ -1897,19 +3252,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:50:25.595417Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:44 GMT + - Wed, 18 Oct 2023 16:50:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1919,7 +3274,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82b84f9b-6bf0-4546-81e0-193b379b36be + - 7bd9c4b7-f1e3-48e2-b62f-ae31abd11de8 status: 200 OK code: 200 duration: "" @@ -1930,19 +3285,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/86352ce5-787c-449c-9998-79898166204d method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-18T16:43:19.912799Z","dhcp_enabled":true,"id":"86352ce5-787c-449c-9998-79898166204d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:19.912799Z","id":"e8dae137-1a4b-466e-835a-826dcf62fdd7","subnet":"172.16.40.0/22","updated_at":"2023-10-18T16:43:19.912799Z"},{"created_at":"2023-10-18T16:43:19.912799Z","id":"7ecbb54d-39e3-4c8a-b892-21165c91b24f","subnet":"fd63:256c:45f7:af6c::/64","updated_at":"2023-10-18T16:43:19.912799Z"}],"tags":[],"updated_at":"2023-10-18T16:43:19.912799Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "668" + - "718" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:49 GMT + - Wed, 18 Oct 2023 16:50:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1952,7 +3307,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d0b4635-fdf1-449f-865f-f88a1761a9f5 + - f9a54dbc-4b67-4322-8ec1-ff658aec85a8 status: 200 OK code: 200 duration: "" @@ -1963,19 +3318,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:45:13.613947Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "668" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:54 GMT + - Wed, 18 Oct 2023 16:50:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1985,7 +3340,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f026868c-fcef-40ff-aa00-5df65b2ab340 + - 7208fc8c-5a45-419c-bf26-be61d1974682 status: 200 OK code: 200 duration: "" @@ -1996,19 +3351,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/kubeconfig method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTmVVMXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMTVUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYZzRDbmhMZVU4NGFIaFdaVVJGYTA0eWRtOUxjRlJzZDBoSlNrUXJiMlY0WjJaQllVUkNiV3B2YTBoSFZTdGxjekp5WkhWWE5qbEdiR3RWYWpaRlVGQjBiUzhLUm5sQ1NrUjBlR1JxWjFnelRsTlNVelppYVRGM1QwUnpSMnRwVEU1bloxcG9kRlIwVjFNM1RsaHZkeTl6VGpncmNUVXlkVWg2VURCcmNrbHdUMkZyT0FwalpscG5ORVo2VVhsMFpXOXJTbGMxTUd4eVlsZHROVW8wYzFaVEwwdGxibFI1T1UxM1NsRlRORU0yZW5oMlIweGtlakZUTjJGaFNXaHRLMHhNT1U5bkNtaDBMMGRNV1RGS1RVNXFPVXd3UXpaRVFuVTJiV2hoT0dOSGFVMUNSbUU1VFdWTWFrcE5Namt4V1ROU1lYQk1OR3hVUkhBekt6ZEVNemREUjA4MlJVZ0tRblJ5UVdaMmQxVnFkbXhLTVRKM2QySlZZbVZTTWtaaWJEaFlhMU5VUzFWRVQwdHRSbWhoVFRnNFZtSnpNamxOTTBGck1VeHNhMnBxUldKNVdHNUllQXBaWTJOMllqSXdaazlzVDBKRVpsaG9ORUV3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpDTVVab2RYSTVUVGhaTTJwa2MzbFVlbUp1ZDNGSlZHSjJSakpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDTkVneFdFbDNNVkZ4VG1oWGNtb3dZbGxZTm10NmVuSkpjMEZTYVVJdlpFTkliSEZGYzBkRkwyRktVVlJ6Y25CUlZncFNSWHB5VFVzNFZuUm9Za3huUzNwblQwRmFObkJYV1hWRmFuTkZTbnBoU0ZsdE1EbDNhRFZNTUZGUWQwTnVUaXRUU25FNE1uUmxkRU0wT0RoM2JGbFJDbGwwYlVscU5VZExOVW8zYWxocFUzWjNSa016YlVwTFVHMTVhSFpIU2tGV1lWRlNSMWR2WVVORVJIcG5VMjVOUTBwbWVYTTBTSHBFY0VGSWNHbHFWRmdLTUhSclNFcENVMk0wYlVWWlNXbEZiRTlTUVhSNEswdFRhMGhFYkRWSmNFVkxZM1ptWVRnMmFXTlRPR1JDU1dKSVMyaEVVV2htTnpsUE9ERTRWVTVWUndveWFqUmFSbTlsU2xBcmRHcE9XRnBITkhobWMyRnNSVXBMWWtSb1VYZEtZa2xWWTBONk5VaFFUREpHWms1amQzZ3lOREZ3ZGk5b1dpdEthR3hDV2prNUNubGtPVGg1V2xweFlsaFNWWEJIUm1VdlNrcHNXa2hHVWxOTVJrbDBhVXA2U2taNE1Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly80MjJmM2EwZi04NjcyLTQ3ZDAtYmE0My1lNmY3MGZlNTczZDMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIVU1YeENkOFd0MnJRSnRvWmdqN3pVcUxSa2UwdHp6Vm9aT0Rvb3JUdURFcjltT2Zxc0NlMXU0Uw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "668" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:59 GMT + - Wed, 18 Oct 2023 16:50:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2018,7 +3373,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0779aa6-1881-4baa-9e22-6ab3d11211aa + - 4cc981a4-9b45-43f4-bbeb-36d9b2e7e70e status: 200 OK code: 200 duration: "" @@ -2029,19 +3384,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:50:25.595417Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:04 GMT + - Wed, 18 Oct 2023 16:50:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2051,7 +3406,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73204f24-a586-4be7-ba55-20947a14f115 + - 21f4c3ac-0219-427b-bcec-2c7692baf043 status: 200 OK code: 200 duration: "" @@ -2062,19 +3417,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/nodes?order_by=created_at_asc&page=1&pool_id=e903ea26-fed8-4d2e-83ac-80da5478e6f6&status=unknown method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:45:22.864846Z","error_message":null,"id":"763cccf3-28bc-4a71-bf3f-50743fa64646","name":"scw-test-pool-minimal-test-pool-minimal-763ccc","pool_id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","provider_id":"scaleway://instance/fr-par-1/c6df0307-f00a-4a58-89b5-7d39cfeff63b","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:50:25.561389Z"}],"total_count":1}' headers: Content-Length: - - "668" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:09 GMT + - Wed, 18 Oct 2023 16:50:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2084,7 +3439,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78c7cf38-0286-4562-9eab-cbdd95148448 + - e62911ed-0d93-49e0-a6f2-2a305bfc49b7 status: 200 OK code: 200 duration: "" @@ -2095,19 +3450,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/86352ce5-787c-449c-9998-79898166204d method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-18T16:43:19.912799Z","dhcp_enabled":true,"id":"86352ce5-787c-449c-9998-79898166204d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:19.912799Z","id":"e8dae137-1a4b-466e-835a-826dcf62fdd7","subnet":"172.16.40.0/22","updated_at":"2023-10-18T16:43:19.912799Z"},{"created_at":"2023-10-18T16:43:19.912799Z","id":"7ecbb54d-39e3-4c8a-b892-21165c91b24f","subnet":"fd63:256c:45f7:af6c::/64","updated_at":"2023-10-18T16:43:19.912799Z"}],"tags":[],"updated_at":"2023-10-18T16:43:19.912799Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "668" + - "718" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:14 GMT + - Wed, 18 Oct 2023 16:50:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2117,7 +3472,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22e83368-95e4-42b4-b58f-d285319f1d21 + - 047ad7f3-d85e-4029-8d70-d613b3e945d7 status: 200 OK code: 200 duration: "" @@ -2128,19 +3483,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:45:13.613947Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "668" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:19 GMT + - Wed, 18 Oct 2023 16:50:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2150,7 +3505,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 954a21b8-66cf-41ee-a9b0-dffe50d8e059 + - 3c0d6a1e-1f59-412a-b49a-2ac679f97be9 status: 200 OK code: 200 duration: "" @@ -2161,19 +3516,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/kubeconfig method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTmVVMXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMTVUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYZzRDbmhMZVU4NGFIaFdaVVJGYTA0eWRtOUxjRlJzZDBoSlNrUXJiMlY0WjJaQllVUkNiV3B2YTBoSFZTdGxjekp5WkhWWE5qbEdiR3RWYWpaRlVGQjBiUzhLUm5sQ1NrUjBlR1JxWjFnelRsTlNVelppYVRGM1QwUnpSMnRwVEU1bloxcG9kRlIwVjFNM1RsaHZkeTl6VGpncmNUVXlkVWg2VURCcmNrbHdUMkZyT0FwalpscG5ORVo2VVhsMFpXOXJTbGMxTUd4eVlsZHROVW8wYzFaVEwwdGxibFI1T1UxM1NsRlRORU0yZW5oMlIweGtlakZUTjJGaFNXaHRLMHhNT1U5bkNtaDBMMGRNV1RGS1RVNXFPVXd3UXpaRVFuVTJiV2hoT0dOSGFVMUNSbUU1VFdWTWFrcE5Namt4V1ROU1lYQk1OR3hVUkhBekt6ZEVNemREUjA4MlJVZ0tRblJ5UVdaMmQxVnFkbXhLTVRKM2QySlZZbVZTTWtaaWJEaFlhMU5VUzFWRVQwdHRSbWhoVFRnNFZtSnpNamxOTTBGck1VeHNhMnBxUldKNVdHNUllQXBaWTJOMllqSXdaazlzVDBKRVpsaG9ORUV3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpDTVVab2RYSTVUVGhaTTJwa2MzbFVlbUp1ZDNGSlZHSjJSakpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDTkVneFdFbDNNVkZ4VG1oWGNtb3dZbGxZTm10NmVuSkpjMEZTYVVJdlpFTkliSEZGYzBkRkwyRktVVlJ6Y25CUlZncFNSWHB5VFVzNFZuUm9Za3huUzNwblQwRmFObkJYV1hWRmFuTkZTbnBoU0ZsdE1EbDNhRFZNTUZGUWQwTnVUaXRUU25FNE1uUmxkRU0wT0RoM2JGbFJDbGwwYlVscU5VZExOVW8zYWxocFUzWjNSa016YlVwTFVHMTVhSFpIU2tGV1lWRlNSMWR2WVVORVJIcG5VMjVOUTBwbWVYTTBTSHBFY0VGSWNHbHFWRmdLTUhSclNFcENVMk0wYlVWWlNXbEZiRTlTUVhSNEswdFRhMGhFYkRWSmNFVkxZM1ptWVRnMmFXTlRPR1JDU1dKSVMyaEVVV2htTnpsUE9ERTRWVTVWUndveWFqUmFSbTlsU2xBcmRHcE9XRnBITkhobWMyRnNSVXBMWWtSb1VYZEtZa2xWWTBONk5VaFFUREpHWms1amQzZ3lOREZ3ZGk5b1dpdEthR3hDV2prNUNubGtPVGg1V2xweFlsaFNWWEJIUm1VdlNrcHNXa2hHVWxOTVJrbDBhVXA2U2taNE1Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly80MjJmM2EwZi04NjcyLTQ3ZDAtYmE0My1lNmY3MGZlNTczZDMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIVU1YeENkOFd0MnJRSnRvWmdqN3pVcUxSa2UwdHp6Vm9aT0Rvb3JUdURFcjltT2Zxc0NlMXU0Uw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "668" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:24 GMT + - Wed, 18 Oct 2023 16:50:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2183,7 +3538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51c95938-a1ee-4cc9-b9ae-c3ec3b840262 + - 585db4c7-15ee-4781-836a-daf44b0289b5 status: 200 OK code: 200 duration: "" @@ -2194,19 +3549,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:50:25.595417Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:29 GMT + - Wed, 18 Oct 2023 16:50:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2216,7 +3571,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdf5248a-e73f-4baa-995b-e7cdf3222825 + - 12548ec7-f330-41c4-ad05-43bae52fa870 status: 200 OK code: 200 duration: "" @@ -2227,19 +3582,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/nodes?order_by=created_at_asc&page=1&pool_id=e903ea26-fed8-4d2e-83ac-80da5478e6f6&status=unknown method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:45:22.864846Z","error_message":null,"id":"763cccf3-28bc-4a71-bf3f-50743fa64646","name":"scw-test-pool-minimal-test-pool-minimal-763ccc","pool_id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","provider_id":"scaleway://instance/fr-par-1/c6df0307-f00a-4a58-89b5-7d39cfeff63b","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:50:25.561389Z"}],"total_count":1}' headers: Content-Length: - - "668" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:34 GMT + - Wed, 18 Oct 2023 16:50:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2249,7 +3604,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14c675bb-1f12-4099-8ebb-c0ba5c4682c6 + - 46e264b4-661b-49f7-a279-241caeb0fc10 status: 200 OK code: 200 duration: "" @@ -2260,19 +3615,54 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:00:32.344064Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:45:13.613947Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1497" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:50:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1c5bd1e2-95a1-44a0-a8fa-0f8a2275f146 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/pools + method: POST + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868291Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:39 GMT + - Wed, 18 Oct 2023 16:50:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2282,7 +3672,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 738682b1-ea25-4460-8b65-d898878dd4b4 + - 9f0d6de2-fd21-4438-b92e-748ddc5e7f09 status: 200 OK code: 200 duration: "" @@ -2293,19 +3683,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:05:43.187752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "666" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:50:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2315,7 +3705,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8132d4e-68bd-4a5d-91d1-39c77e8fda84 + - bf0c0228-193f-4f27-a8a0-8e5fa5a253dd status: 200 OK code: 200 duration: "" @@ -2326,19 +3716,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:01.908656Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1466" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:50:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2348,7 +3738,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3541041-099f-4181-827f-59ac2cd8d55d + - e76cdf47-e8ee-4f38-a0ff-510383378ef9 status: 200 OK code: 200 duration: "" @@ -2359,19 +3749,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:05:43.187752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "666" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:50:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2381,7 +3771,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2351f49-a4b5-41a0-9fac-f783fca27f22 + - f36f2699-89bd-4e85-8dfd-f384a7d65495 status: 200 OK code: 200 duration: "" @@ -2392,19 +3782,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/nodes?order_by=created_at_asc&page=1&pool_id=9768e9ff-b155-401a-bc85-e022c1757a74&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"nodes":[{"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:34.240822Z","error_message":null,"id":"04f2ce32-f06f-4911-a69b-d7641b7fc331","name":"scw-k8spoolconfigminimal-default-04f2ce32f06f4","pool_id":"9768e9ff-b155-401a-bc85-e022c1757a74","provider_id":"scaleway://instance/fr-par-1/c9c1978e-d67b-415e-93aa-1524f7a25c0e","public_ip_v4":"163.172.130.18","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:43.169681Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:50:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2414,7 +3804,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c661f33e-b193-4243-86ab-e4b3f66875a8 + - 3d43a904-bbaa-487b-9bed-33eeec0ca5f2 status: 200 OK code: 200 duration: "" @@ -2425,19 +3815,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:01.908656Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1466" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:50:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2447,7 +3837,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2494f49c-946b-4c77-ac3d-1f98191a3741 + - f56167ea-fe7a-46f3-a864-6cd08c80100b status: 200 OK code: 200 duration: "" @@ -2458,19 +3848,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:05:43.187752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "666" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:50:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2480,7 +3870,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8059aeb-c4c3-4b1f-a82e-63d2a517193c + - c4ffe973-ef7a-4b86-9798-9304d216c63b status: 200 OK code: 200 duration: "" @@ -2491,19 +3881,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:01.908656Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1466" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:46 GMT + - Wed, 18 Oct 2023 16:50:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2513,7 +3903,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f5b8c17-e9ae-4c2a-888b-0092a7e71ffd + - 55873c1c-c5ae-4736-be94-85ebaae6d476 status: 200 OK code: 200 duration: "" @@ -2524,19 +3914,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQwaERDa2czU2s4elRrZ3hMeTk0WkU5emVYb3hXR1FyVkVGUmJWTktWRmN4VWxaS1VUTXhhbmxFZG1WU05GQkJNRnBYUW1SbmQxUldSMjR4YzJ4VFUyNWFTV2dLYTFSbWVGSmFkemRNT1hScVZWSnNORTFSUmxoNVMwMXdTMjVKTW5Ob2RHTkJURTloVlhacFVrcHRMMU5FZVhaaFVsZDVSVWR0ZFRod2JuWnRWa3AzUWdwblRFeG9SVGMyUkV0NFpFMTNSMFlyYTA5dVVEQnFRV3BvV0hGcloyUlFLMHQwZDJ0SWNsSkxXa1YzUlc1V1VGRnNkRUpaYkc1YVdVWjZVRTFPZUZFNENtTkhTV2hhTDI5VWQyZzJVelJIVDNveWVsVktRVEptT0d4SFIzSlRjSGh0T0ZGVVFWTnlWSFpMVkUxV2JsTlJhRlE0UVdSWlYxWnRkVmhpTTNnMlNYb0tNWElyVkRkblUwMWFWVnBwTUhZMGJVSjVVRGd2ZEZGb2VqQlBVR3RsTW5SdFFYbFBiMHN3U1cxc2JsY3hTM3BwY1U4MU5XdHZOMXBoYmpoalNuUjBRZ3BuZFd4TE1HaHdkRVU1V1RreWRuUTNaM2hWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGYjBZMGREbG9kM1pxWlZkR1lVNHlTVXhpWTFkdFRtRlRaMFZOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVGpZemFIUTRhRzFPY1N0TWJpOVdkVzFxT0RORFZtOW9kMHR1VmxOS1FVVjBXV2xMUWpOcFRERlhiVzVWVDJsdVZncE9SMjlRZUUxUFJTdEdjRFJqTDJwWU4wTjJVblJEV0RScmNHNVdUU3RQUW5SUlEzRkxaVzV0U2pac1VHZFpUbU00YjBGUWNESmtPVE5RTTNBNWFGbFpDa1V2WVhSd1dUSTFVR1YyZDFkT2NtcHZjMHBGWVhOck4xVnBkRmRSZEVoeVJtOXFRMGRwVTBWRlFVcGFOVkV5YzFOaWJYWkRTRFZHTUZwbFJEVk1SVkFLVDJvM1ZVVXpOMnRDTDJKek9ESnplbUY2UXl0S2FWWjVRVzVOTkZGdWJqQkxkbTV2WkdKTlRGTXpUbFZCWVZaUVR6TXdaRVZyVEVSbVdIcHdhMjQzYWdwWlRVaDZkRVpHWXpoTFVuaG1Xak14T0VKWE5qUTBjSFoyTm1aUGNWWlJOa1pJTWtwaE9FNDBkRmsyTjB4VVJsRTVWelZNVUdKellrOXBUekpxUVRFekNtUnFkMnB6WVdocVdVcEJVRFZVVjNsNlprcHVjMEZHZDFCNlZIbzBSWFJxUlhwMk5nb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9iODM3NzdiOS03MjE2LTQ0OWYtYTBiNS1hZGY2MGY3NjU3OWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ21pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ21pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlnbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWdtaW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA3U3BlNUNXcW5EZlY0Q3JjM0JiVnFXcXRTTGtxTlhENWR4MTc1dVFSc3hLNWNTcHJxV1ZObTdjZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2654" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:46 GMT + - Wed, 18 Oct 2023 16:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2546,7 +3936,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 621f82b4-2474-46fa-8328-dbe67b80bbcd + - 6ac8bc79-bff6-4196-9174-37d3e1dea52d status: 200 OK code: 200 duration: "" @@ -2557,19 +3947,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:05:43.187752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "666" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:46 GMT + - Wed, 18 Oct 2023 16:51:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2579,7 +3969,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e269db3e-6765-4767-aaf6-6f74731c6350 + - ff43ec76-5f7f-4bef-9840-fdf0a82d7090 status: 200 OK code: 200 duration: "" @@ -2590,19 +3980,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/nodes?order_by=created_at_asc&page=1&pool_id=9768e9ff-b155-401a-bc85-e022c1757a74&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"nodes":[{"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:34.240822Z","error_message":null,"id":"04f2ce32-f06f-4911-a69b-d7641b7fc331","name":"scw-k8spoolconfigminimal-default-04f2ce32f06f4","pool_id":"9768e9ff-b155-401a-bc85-e022c1757a74","provider_id":"scaleway://instance/fr-par-1/c9c1978e-d67b-415e-93aa-1524f7a25c0e","public_ip_v4":"163.172.130.18","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:43.169681Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:46 GMT + - Wed, 18 Oct 2023 16:51:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2612,7 +4002,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22f079e8-dedd-4919-9eac-a89c8f3044af + - 45faf7a3-c627-4834-94a0-60e0c2285810 status: 200 OK code: 200 duration: "" @@ -2623,19 +4013,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:01.908656Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1466" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:46 GMT + - Wed, 18 Oct 2023 16:51:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2645,7 +4035,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 111f5bdb-132b-4aa2-9630-016b85397d91 + - 85d3da4b-3aa0-487b-a392-b194f25c2d44 status: 200 OK code: 200 duration: "" @@ -2656,19 +4046,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQwaERDa2czU2s4elRrZ3hMeTk0WkU5emVYb3hXR1FyVkVGUmJWTktWRmN4VWxaS1VUTXhhbmxFZG1WU05GQkJNRnBYUW1SbmQxUldSMjR4YzJ4VFUyNWFTV2dLYTFSbWVGSmFkemRNT1hScVZWSnNORTFSUmxoNVMwMXdTMjVKTW5Ob2RHTkJURTloVlhacFVrcHRMMU5FZVhaaFVsZDVSVWR0ZFRod2JuWnRWa3AzUWdwblRFeG9SVGMyUkV0NFpFMTNSMFlyYTA5dVVEQnFRV3BvV0hGcloyUlFLMHQwZDJ0SWNsSkxXa1YzUlc1V1VGRnNkRUpaYkc1YVdVWjZVRTFPZUZFNENtTkhTV2hhTDI5VWQyZzJVelJIVDNveWVsVktRVEptT0d4SFIzSlRjSGh0T0ZGVVFWTnlWSFpMVkUxV2JsTlJhRlE0UVdSWlYxWnRkVmhpTTNnMlNYb0tNWElyVkRkblUwMWFWVnBwTUhZMGJVSjVVRGd2ZEZGb2VqQlBVR3RsTW5SdFFYbFBiMHN3U1cxc2JsY3hTM3BwY1U4MU5XdHZOMXBoYmpoalNuUjBRZ3BuZFd4TE1HaHdkRVU1V1RreWRuUTNaM2hWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGYjBZMGREbG9kM1pxWlZkR1lVNHlTVXhpWTFkdFRtRlRaMFZOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVGpZemFIUTRhRzFPY1N0TWJpOVdkVzFxT0RORFZtOW9kMHR1VmxOS1FVVjBXV2xMUWpOcFRERlhiVzVWVDJsdVZncE9SMjlRZUUxUFJTdEdjRFJqTDJwWU4wTjJVblJEV0RScmNHNVdUU3RQUW5SUlEzRkxaVzV0U2pac1VHZFpUbU00YjBGUWNESmtPVE5RTTNBNWFGbFpDa1V2WVhSd1dUSTFVR1YyZDFkT2NtcHZjMHBGWVhOck4xVnBkRmRSZEVoeVJtOXFRMGRwVTBWRlFVcGFOVkV5YzFOaWJYWkRTRFZHTUZwbFJEVk1SVkFLVDJvM1ZVVXpOMnRDTDJKek9ESnplbUY2UXl0S2FWWjVRVzVOTkZGdWJqQkxkbTV2WkdKTlRGTXpUbFZCWVZaUVR6TXdaRVZyVEVSbVdIcHdhMjQzYWdwWlRVaDZkRVpHWXpoTFVuaG1Xak14T0VKWE5qUTBjSFoyTm1aUGNWWlJOa1pJTWtwaE9FNDBkRmsyTjB4VVJsRTVWelZNVUdKellrOXBUekpxUVRFekNtUnFkMnB6WVdocVdVcEJVRFZVVjNsNlprcHVjMEZHZDFCNlZIbzBSWFJxUlhwMk5nb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9iODM3NzdiOS03MjE2LTQ0OWYtYTBiNS1hZGY2MGY3NjU3OWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ21pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ21pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlnbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWdtaW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA3U3BlNUNXcW5EZlY0Q3JjM0JiVnFXcXRTTGtxTlhENWR4MTc1dVFSc3hLNWNTcHJxV1ZObTdjZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2654" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:47 GMT + - Wed, 18 Oct 2023 16:51:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2678,7 +4068,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e05508e-dc62-4924-b3ff-a5956bd56d13 + - d6389270-afe0-425d-afdb-cfe2f9b5f8b5 status: 200 OK code: 200 duration: "" @@ -2689,19 +4079,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:05:43.187752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "666" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:47 GMT + - Wed, 18 Oct 2023 16:51:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2711,7 +4101,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b015395a-2f6f-46f6-a531-b993e914537c + - 3404d4da-9a7c-417b-a4b5-03ae372c0667 status: 200 OK code: 200 duration: "" @@ -2722,19 +4112,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/nodes?order_by=created_at_asc&page=1&pool_id=9768e9ff-b155-401a-bc85-e022c1757a74&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"nodes":[{"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:34.240822Z","error_message":null,"id":"04f2ce32-f06f-4911-a69b-d7641b7fc331","name":"scw-k8spoolconfigminimal-default-04f2ce32f06f4","pool_id":"9768e9ff-b155-401a-bc85-e022c1757a74","provider_id":"scaleway://instance/fr-par-1/c9c1978e-d67b-415e-93aa-1524f7a25c0e","public_ip_v4":"163.172.130.18","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:43.169681Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:47 GMT + - Wed, 18 Oct 2023 16:51:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2744,7 +4134,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0df3f756-98e6-4869-99bd-41dde4e6c594 + - 82398f31-e687-469f-8281-c0f1f426382e status: 200 OK code: 200 duration: "" @@ -2755,19 +4145,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:01.908656Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1466" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:48 GMT + - Wed, 18 Oct 2023 16:51:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2777,32 +4167,162 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26b4f8d4-c3b0-43a4-aa1f-6a5c63a77a93 + - c350bbea-3b87-4037-967d-b5b6855201b0 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "680" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 16:51:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 326d7412-7588-4fbd-bfca-1ddfd17d69fc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/pools - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "680" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:51:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0206fcc1-8261-45d6-8079-55c6f71419f1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "680" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:51:55 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ef9b5500-ae39-429a-98ab-91101784d1a3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "680" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:52:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4122b60d-0e11-4efa-b81b-1a6f6b9f68c0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 + method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258283Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "671" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:48 GMT + - Wed, 18 Oct 2023 16:52:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2812,7 +4332,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb983300-b4fe-4c3d-9bae-4048cb243b40 + - 53efc1e1-3517-41b8-af50-7f04aa90ec5f status: 200 OK code: 200 duration: "" @@ -2823,19 +4343,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:48 GMT + - Wed, 18 Oct 2023 16:52:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2845,7 +4365,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d6fbc5c-3427-4161-bd16-36ea399d546e + - 26c74f2c-d793-4e75-9768-7dc1f3fc3f36 status: 200 OK code: 200 duration: "" @@ -2856,19 +4376,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:53 GMT + - Wed, 18 Oct 2023 16:52:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2878,7 +4398,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 884988a7-40a6-47ce-941d-3477e409970f + - d5b2f331-b700-49e0-875f-95597c66c789 status: 200 OK code: 200 duration: "" @@ -2889,19 +4409,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:58 GMT + - Wed, 18 Oct 2023 16:52:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2911,7 +4431,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abe17d4c-9245-4f46-a978-e5007b1fdc73 + - dbfe6458-b0cd-4bc0-b0d7-865d98201387 status: 200 OK code: 200 duration: "" @@ -2922,19 +4442,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:03 GMT + - Wed, 18 Oct 2023 16:52:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2944,7 +4464,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3125332-9577-4857-800e-92321f042d44 + - 851c8dee-6a4f-4afa-ae5a-31f4a7349019 status: 200 OK code: 200 duration: "" @@ -2955,19 +4475,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:08 GMT + - Wed, 18 Oct 2023 16:52:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2977,7 +4497,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc45b75c-445e-407f-8471-1c29189d1c4f + - 22ec02a4-3b9f-44f7-b927-d0f9b3ea0fa5 status: 200 OK code: 200 duration: "" @@ -2988,19 +4508,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:14 GMT + - Wed, 18 Oct 2023 16:52:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3010,7 +4530,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7da5ea2c-1095-4ac1-9ae8-820082e4c0cf + - 8b9d362d-3920-40c3-80a1-5da0ec16d1e4 status: 200 OK code: 200 duration: "" @@ -3021,19 +4541,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:19 GMT + - Wed, 18 Oct 2023 16:52:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3043,7 +4563,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcb8e1f5-0914-4239-a473-946013314e8e + - dc983714-d75c-4758-aabb-2c930db113f5 status: 200 OK code: 200 duration: "" @@ -3054,19 +4574,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:24 GMT + - Wed, 18 Oct 2023 16:52:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3076,7 +4596,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e41d3f2-5ea1-4ade-8ae2-ef2d9b7b090a + - 631faa9f-c657-49cf-9ed9-ef4c6588eb78 status: 200 OK code: 200 duration: "" @@ -3087,19 +4607,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:29 GMT + - Wed, 18 Oct 2023 16:52:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3109,7 +4629,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46a1c1f1-c41c-4991-8d15-9a0e53efe1cd + - ee04a261-bc1b-4f7d-9587-b8e543bec4d7 status: 200 OK code: 200 duration: "" @@ -3120,19 +4640,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:34 GMT + - Wed, 18 Oct 2023 16:52:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3142,7 +4662,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69c8c10a-5e5a-49c1-aac8-c140a4073c35 + - 85f27181-b2c0-4e3f-907b-c907b5e799d9 status: 200 OK code: 200 duration: "" @@ -3153,19 +4673,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:39 GMT + - Wed, 18 Oct 2023 16:53:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3175,7 +4695,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed69fadc-30a7-4538-af95-04ea3c266d0b + - 5716da12-c319-486e-9b5c-45eed37a44c6 status: 200 OK code: 200 duration: "" @@ -3186,19 +4706,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:44 GMT + - Wed, 18 Oct 2023 16:53:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3208,7 +4728,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c774e222-703b-4380-8699-77ae6ca28c9c + - 1fc30526-c835-4501-b6ff-92628a7968c4 status: 200 OK code: 200 duration: "" @@ -3219,19 +4739,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:49 GMT + - Wed, 18 Oct 2023 16:53:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3241,7 +4761,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aed2de84-8fb5-475f-82c0-a4941c3e92b0 + - 51a10e90-f81c-474e-87a7-1bfbfb5f5a6b status: 200 OK code: 200 duration: "" @@ -3252,19 +4772,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:54 GMT + - Wed, 18 Oct 2023 16:53:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3274,7 +4794,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b10a0d4-b0da-4a5a-aa8e-43e4755baca4 + - 3df36196-70d4-41ae-83a4-6daf07c1cc39 status: 200 OK code: 200 duration: "" @@ -3285,19 +4805,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:59 GMT + - Wed, 18 Oct 2023 16:53:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3307,7 +4827,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bdb788f-b8f6-4542-b8ca-4fe70403fd58 + - 3fb1d1a8-caeb-4c8b-bfb4-5bab409e6d83 status: 200 OK code: 200 duration: "" @@ -3318,19 +4838,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:04 GMT + - Wed, 18 Oct 2023 16:53:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3340,7 +4860,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc402255-b7c0-4e6d-8ce3-060c44c4e36b + - ce8301f0-f184-4c13-862f-cc46af54e9bc status: 200 OK code: 200 duration: "" @@ -3351,19 +4871,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:09 GMT + - Wed, 18 Oct 2023 16:53:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3373,7 +4893,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56d6c009-37fa-4053-b727-2b4e54dbf7db + - 2cab4fe3-514f-4b7e-9dc6-3fb83709d9dd status: 200 OK code: 200 duration: "" @@ -3384,19 +4904,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:14 GMT + - Wed, 18 Oct 2023 16:53:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3406,7 +4926,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21b87f5b-37ac-49c2-877a-77bff4886124 + - b60389aa-7438-4c67-b508-4a4f93c390e1 status: 200 OK code: 200 duration: "" @@ -3417,19 +4937,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:19 GMT + - Wed, 18 Oct 2023 16:53:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3439,7 +4959,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8cbdb63-bbae-4fab-8c24-6098b8273bcc + - d5eab4f2-5707-4261-9bb0-0fca03c049ae status: 200 OK code: 200 duration: "" @@ -3450,19 +4970,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:24 GMT + - Wed, 18 Oct 2023 16:53:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3472,7 +4992,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 629c3170-aa0f-429e-bf42-337e54079a08 + - c882091a-a5c1-4b47-97c2-a00d3ede3cb3 status: 200 OK code: 200 duration: "" @@ -3483,19 +5003,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:29 GMT + - Wed, 18 Oct 2023 16:53:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3505,7 +5025,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7daef0fb-5cdd-4937-af41-cec1151494ee + - 48a48d5b-c2c6-498c-b382-8ce0b226d250 status: 200 OK code: 200 duration: "" @@ -3516,19 +5036,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:34 GMT + - Wed, 18 Oct 2023 16:53:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3538,7 +5058,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81c35228-ff06-466c-ab1c-f825d71b4583 + - afe5f0fe-5a4b-4d1f-9433-0b214299378e status: 200 OK code: 200 duration: "" @@ -3549,19 +5069,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:40 GMT + - Wed, 18 Oct 2023 16:54:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3571,7 +5091,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7bc905e-a60d-44d2-87f9-5f5eaa4a0f06 + - 0b0436ee-b71e-4311-bf3d-cf3504cece44 status: 200 OK code: 200 duration: "" @@ -3582,19 +5102,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:45 GMT + - Wed, 18 Oct 2023 16:54:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3604,7 +5124,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31986d86-b1ae-4a58-9115-e3e85857c0d0 + - 5417cf4a-106a-4319-9edb-b3cd9332f611 status: 200 OK code: 200 duration: "" @@ -3615,19 +5135,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:50 GMT + - Wed, 18 Oct 2023 16:54:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3637,7 +5157,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b976821-6056-45e6-8256-a3fb2064d3a8 + - 7637bd82-5f09-4bb9-9379-ccbab069be1a status: 200 OK code: 200 duration: "" @@ -3648,19 +5168,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:55 GMT + - Wed, 18 Oct 2023 16:54:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3670,7 +5190,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbab9b93-4ea2-4eb4-970f-eb2aeacbe987 + - 3103d735-e618-4685-9e3e-6f29bcc71517 status: 200 OK code: 200 duration: "" @@ -3681,19 +5201,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:00 GMT + - Wed, 18 Oct 2023 16:54:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3703,7 +5223,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa034cab-3689-4adf-a095-77fe784c302a + - 0ae6cdc1-ddef-4c6c-9e78-68f4d02b32f5 status: 200 OK code: 200 duration: "" @@ -3714,19 +5234,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:05 GMT + - Wed, 18 Oct 2023 16:54:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3736,7 +5256,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d5a7d43-0017-4c8e-84cb-f6d4cb8fc21b + - e9b1707e-2cc2-4440-85cd-25a84037936d status: 200 OK code: 200 duration: "" @@ -3747,19 +5267,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:10 GMT + - Wed, 18 Oct 2023 16:54:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3769,7 +5289,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6470c8e-9a07-4b9a-a632-ac4133b75f38 + - a164be21-db59-45d2-b52c-81472f8c4eed status: 200 OK code: 200 duration: "" @@ -3780,19 +5300,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:15 GMT + - Wed, 18 Oct 2023 16:54:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3802,7 +5322,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0147fd00-a92a-414c-a4f4-d71568ff43ac + - 9eef88ca-d19c-435f-94fe-7d10955046d3 status: 200 OK code: 200 duration: "" @@ -3813,19 +5333,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:20 GMT + - Wed, 18 Oct 2023 16:54:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3835,7 +5355,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a90860f6-3623-4bb8-8593-2485a7a54ef0 + - 8f52c449-c41a-4501-ac83-a859f72f7d69 status: 200 OK code: 200 duration: "" @@ -3846,19 +5366,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:25 GMT + - Wed, 18 Oct 2023 16:54:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3868,7 +5388,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7d751e6-b28e-48e8-8cab-86f43a0b7c6b + - 0fe0727f-4fc6-4b7c-893e-524e58a8abbd status: 200 OK code: 200 duration: "" @@ -3879,19 +5399,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:30 GMT + - Wed, 18 Oct 2023 16:54:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3901,7 +5421,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6baa55d-ab01-4219-a7f3-d4cd1378a9fa + - e67a29f9-7cc5-42cd-ae9e-0433bdfb063b status: 200 OK code: 200 duration: "" @@ -3912,19 +5432,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:35 GMT + - Wed, 18 Oct 2023 16:54:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3934,7 +5454,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd05f007-3be7-48ad-b941-2a472c23c726 + - e094375e-7802-4628-8979-5992d9a58b30 status: 200 OK code: 200 duration: "" @@ -3945,19 +5465,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:40 GMT + - Wed, 18 Oct 2023 16:55:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3967,7 +5487,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d32a70c-4ed2-41b9-a2c2-9a399c96ae10 + - f185a863-263e-4e10-a094-12a3e2708b2e status: 200 OK code: 200 duration: "" @@ -3978,19 +5498,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:45 GMT + - Wed, 18 Oct 2023 16:55:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4000,7 +5520,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa26ccb0-c4b5-4151-aa4e-28f5674ad317 + - a2aa4065-cdef-4e9e-9202-a7b2e64d54d7 status: 200 OK code: 200 duration: "" @@ -4011,19 +5531,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:50 GMT + - Wed, 18 Oct 2023 16:55:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4033,7 +5553,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b86ab815-ca6c-49b5-b8a8-a85b5ad4fb5c + - 76a67360-c369-4452-bfee-65efbef43574 status: 200 OK code: 200 duration: "" @@ -4044,19 +5564,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:55 GMT + - Wed, 18 Oct 2023 16:55:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4066,7 +5586,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59ab8849-30cb-429c-a1c1-b54684271b9a + - cd0bae41-0deb-4ee9-af2e-97bf615ff7c2 status: 200 OK code: 200 duration: "" @@ -4077,19 +5597,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:50:28.592868Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "680" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:00 GMT + - Wed, 18 Oct 2023 16:55:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4099,7 +5619,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efa5a5ed-2775-4879-b766-d168324e12a5 + - e02253df-7e10-4394-9ff6-d4db59a2d4ea status: 200 OK code: 200 duration: "" @@ -4110,19 +5630,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:55:25.642729Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:06 GMT + - Wed, 18 Oct 2023 16:55:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4132,7 +5652,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00d59191-dead-4a22-a8cf-a26d32311844 + - 3c30226b-6e9b-4da6-adaa-b2a07c13b6d7 status: 200 OK code: 200 duration: "" @@ -4143,19 +5663,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:05:48.422258Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:55:25.642729Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "668" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:11 GMT + - Wed, 18 Oct 2023 16:55:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4165,7 +5685,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9277c7d6-2d9e-4542-95a3-9b2dd651256b + - 1eefbc1a-fd4f-4b74-ba28-9570bd47165b status: 200 OK code: 200 duration: "" @@ -4176,19 +5696,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/nodes?order_by=created_at_asc&page=1&pool_id=9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200&status=unknown method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:09:13.701840Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:50:29.077607Z","error_message":null,"id":"4bf49a53-286a-47b9-9073-75aac8717ac0","name":"scw-test-pool-minima-test-pool-minimal--4bf49a","pool_id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","provider_id":"scaleway://instance/fr-par-1/bd30346a-89e9-4e47-b9bb-734491a2aaa0","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:55:25.627946Z"}],"total_count":1}' headers: Content-Length: - - "666" + - "657" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:16 GMT + - Wed, 18 Oct 2023 16:55:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4198,7 +5718,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 428dacec-b737-49c7-b229-87a985c9f3f6 + - 7b61c864-b748-4cb1-9b5c-861d860bf6ef status: 200 OK code: 200 duration: "" @@ -4209,19 +5729,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:09:13.701840Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:45:13.613947Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "666" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:16 GMT + - Wed, 18 Oct 2023 16:55:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4231,7 +5751,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e7d7c41-694c-47d7-a7fd-0c5ce9c2a10e + - b8eb6515-1504-456e-ae64-50f39b62c669 status: 200 OK code: 200 duration: "" @@ -4242,19 +5762,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/nodes?order_by=created_at_asc&page=1&pool_id=19cba59c-9914-4edd-8900-a0c9be287abc&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"nodes":[{"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:05:49.152534Z","error_message":null,"id":"c788523f-1dc9-49e1-861b-0424035aee98","name":"scw-k8spoolconfigminimal-minimal-c788523f1dc94","pool_id":"19cba59c-9914-4edd-8900-a0c9be287abc","provider_id":"scaleway://instance/fr-par-1/6e8e0e83-ec17-4b8e-8e49-e6370b8ca739","public_ip_v4":"51.158.104.129","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:09:13.688439Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:55:25.642729Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:16 GMT + - Wed, 18 Oct 2023 16:55:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4264,7 +5784,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5982ec0-a162-4ce1-a0d0-e02fcc686944 + - ad2800b8-f256-419f-bc27-c0a9f85e87e6 status: 200 OK code: 200 duration: "" @@ -4275,19 +5795,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/86352ce5-787c-449c-9998-79898166204d method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:01.908656Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"created_at":"2023-10-18T16:43:19.912799Z","dhcp_enabled":true,"id":"86352ce5-787c-449c-9998-79898166204d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:19.912799Z","id":"e8dae137-1a4b-466e-835a-826dcf62fdd7","subnet":"172.16.40.0/22","updated_at":"2023-10-18T16:43:19.912799Z"},{"created_at":"2023-10-18T16:43:19.912799Z","id":"7ecbb54d-39e3-4c8a-b892-21165c91b24f","subnet":"fd63:256c:45f7:af6c::/64","updated_at":"2023-10-18T16:43:19.912799Z"}],"tags":[],"updated_at":"2023-10-18T16:43:19.912799Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1466" + - "718" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:16 GMT + - Wed, 18 Oct 2023 16:55:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4297,7 +5817,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3a64d37-dab2-48d7-8079-71ab676da017 + - 0500a866-45da-46ca-ba28-3db4e5f22db6 status: 200 OK code: 200 duration: "" @@ -4308,19 +5828,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:09:13.701840Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:45:13.613947Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "666" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:17 GMT + - Wed, 18 Oct 2023 16:55:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4330,7 +5850,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b60ebc4f-d7c5-457c-ac4d-ffd9dbce97c6 + - 6e0f4c21-bbbf-417c-b662-b13d04cd28f7 status: 200 OK code: 200 duration: "" @@ -4341,19 +5861,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:01.908656Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTmVVMXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMTVUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYZzRDbmhMZVU4NGFIaFdaVVJGYTA0eWRtOUxjRlJzZDBoSlNrUXJiMlY0WjJaQllVUkNiV3B2YTBoSFZTdGxjekp5WkhWWE5qbEdiR3RWYWpaRlVGQjBiUzhLUm5sQ1NrUjBlR1JxWjFnelRsTlNVelppYVRGM1QwUnpSMnRwVEU1bloxcG9kRlIwVjFNM1RsaHZkeTl6VGpncmNUVXlkVWg2VURCcmNrbHdUMkZyT0FwalpscG5ORVo2VVhsMFpXOXJTbGMxTUd4eVlsZHROVW8wYzFaVEwwdGxibFI1T1UxM1NsRlRORU0yZW5oMlIweGtlakZUTjJGaFNXaHRLMHhNT1U5bkNtaDBMMGRNV1RGS1RVNXFPVXd3UXpaRVFuVTJiV2hoT0dOSGFVMUNSbUU1VFdWTWFrcE5Namt4V1ROU1lYQk1OR3hVUkhBekt6ZEVNemREUjA4MlJVZ0tRblJ5UVdaMmQxVnFkbXhLTVRKM2QySlZZbVZTTWtaaWJEaFlhMU5VUzFWRVQwdHRSbWhoVFRnNFZtSnpNamxOTTBGck1VeHNhMnBxUldKNVdHNUllQXBaWTJOMllqSXdaazlzVDBKRVpsaG9ORUV3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpDTVVab2RYSTVUVGhaTTJwa2MzbFVlbUp1ZDNGSlZHSjJSakpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDTkVneFdFbDNNVkZ4VG1oWGNtb3dZbGxZTm10NmVuSkpjMEZTYVVJdlpFTkliSEZGYzBkRkwyRktVVlJ6Y25CUlZncFNSWHB5VFVzNFZuUm9Za3huUzNwblQwRmFObkJYV1hWRmFuTkZTbnBoU0ZsdE1EbDNhRFZNTUZGUWQwTnVUaXRUU25FNE1uUmxkRU0wT0RoM2JGbFJDbGwwYlVscU5VZExOVW8zYWxocFUzWjNSa016YlVwTFVHMTVhSFpIU2tGV1lWRlNSMWR2WVVORVJIcG5VMjVOUTBwbWVYTTBTSHBFY0VGSWNHbHFWRmdLTUhSclNFcENVMk0wYlVWWlNXbEZiRTlTUVhSNEswdFRhMGhFYkRWSmNFVkxZM1ptWVRnMmFXTlRPR1JDU1dKSVMyaEVVV2htTnpsUE9ERTRWVTVWUndveWFqUmFSbTlsU2xBcmRHcE9XRnBITkhobWMyRnNSVXBMWWtSb1VYZEtZa2xWWTBONk5VaFFUREpHWms1amQzZ3lOREZ3ZGk5b1dpdEthR3hDV2prNUNubGtPVGg1V2xweFlsaFNWWEJIUm1VdlNrcHNXa2hHVWxOTVJrbDBhVXA2U2taNE1Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly80MjJmM2EwZi04NjcyLTQ3ZDAtYmE0My1lNmY3MGZlNTczZDMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIVU1YeENkOFd0MnJRSnRvWmdqN3pVcUxSa2UwdHp6Vm9aT0Rvb3JUdURFcjltT2Zxc0NlMXU0Uw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1466" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:17 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4363,7 +5883,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 802f0821-70ca-4cf8-b948-b98545192f41 + - 43e27c20-41f3-495f-ba5c-a7e9ef24c7fe status: 200 OK code: 200 duration: "" @@ -4374,19 +5894,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQwaERDa2czU2s4elRrZ3hMeTk0WkU5emVYb3hXR1FyVkVGUmJWTktWRmN4VWxaS1VUTXhhbmxFZG1WU05GQkJNRnBYUW1SbmQxUldSMjR4YzJ4VFUyNWFTV2dLYTFSbWVGSmFkemRNT1hScVZWSnNORTFSUmxoNVMwMXdTMjVKTW5Ob2RHTkJURTloVlhacFVrcHRMMU5FZVhaaFVsZDVSVWR0ZFRod2JuWnRWa3AzUWdwblRFeG9SVGMyUkV0NFpFMTNSMFlyYTA5dVVEQnFRV3BvV0hGcloyUlFLMHQwZDJ0SWNsSkxXa1YzUlc1V1VGRnNkRUpaYkc1YVdVWjZVRTFPZUZFNENtTkhTV2hhTDI5VWQyZzJVelJIVDNveWVsVktRVEptT0d4SFIzSlRjSGh0T0ZGVVFWTnlWSFpMVkUxV2JsTlJhRlE0UVdSWlYxWnRkVmhpTTNnMlNYb0tNWElyVkRkblUwMWFWVnBwTUhZMGJVSjVVRGd2ZEZGb2VqQlBVR3RsTW5SdFFYbFBiMHN3U1cxc2JsY3hTM3BwY1U4MU5XdHZOMXBoYmpoalNuUjBRZ3BuZFd4TE1HaHdkRVU1V1RreWRuUTNaM2hWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGYjBZMGREbG9kM1pxWlZkR1lVNHlTVXhpWTFkdFRtRlRaMFZOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVGpZemFIUTRhRzFPY1N0TWJpOVdkVzFxT0RORFZtOW9kMHR1VmxOS1FVVjBXV2xMUWpOcFRERlhiVzVWVDJsdVZncE9SMjlRZUUxUFJTdEdjRFJqTDJwWU4wTjJVblJEV0RScmNHNVdUU3RQUW5SUlEzRkxaVzV0U2pac1VHZFpUbU00YjBGUWNESmtPVE5RTTNBNWFGbFpDa1V2WVhSd1dUSTFVR1YyZDFkT2NtcHZjMHBGWVhOck4xVnBkRmRSZEVoeVJtOXFRMGRwVTBWRlFVcGFOVkV5YzFOaWJYWkRTRFZHTUZwbFJEVk1SVkFLVDJvM1ZVVXpOMnRDTDJKek9ESnplbUY2UXl0S2FWWjVRVzVOTkZGdWJqQkxkbTV2WkdKTlRGTXpUbFZCWVZaUVR6TXdaRVZyVEVSbVdIcHdhMjQzYWdwWlRVaDZkRVpHWXpoTFVuaG1Xak14T0VKWE5qUTBjSFoyTm1aUGNWWlJOa1pJTWtwaE9FNDBkRmsyTjB4VVJsRTVWelZNVUdKellrOXBUekpxUVRFekNtUnFkMnB6WVdocVdVcEJVRFZVVjNsNlprcHVjMEZHZDFCNlZIbzBSWFJxUlhwMk5nb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9iODM3NzdiOS03MjE2LTQ0OWYtYTBiNS1hZGY2MGY3NjU3OWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ21pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ21pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlnbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWdtaW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA3U3BlNUNXcW5EZlY0Q3JjM0JiVnFXcXRTTGtxTlhENWR4MTc1dVFSc3hLNWNTcHJxV1ZObTdjZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:55:25.642729Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2654" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:17 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4396,7 +5916,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe4da081-8a6a-4ebc-946f-9c4d4cc8193e + - 8c79b925-30c3-4f3e-bc70-6b0e156567ab status: 200 OK code: 200 duration: "" @@ -4407,19 +5927,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:09:13.701840Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:50:25.595417Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "666" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:17 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4429,7 +5949,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8be8ced1-87b8-4e3d-a595-c38a316c1253 + - abc1bb53-c7ea-4426-8f76-4af3e538afcf status: 200 OK code: 200 duration: "" @@ -4440,19 +5960,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/nodes?order_by=created_at_asc&page=1&pool_id=e903ea26-fed8-4d2e-83ac-80da5478e6f6&status=unknown method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:05:43.187752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:45:22.864846Z","error_message":null,"id":"763cccf3-28bc-4a71-bf3f-50743fa64646","name":"scw-test-pool-minimal-test-pool-minimal-763ccc","pool_id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","provider_id":"scaleway://instance/fr-par-1/c6df0307-f00a-4a58-89b5-7d39cfeff63b","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:55:25.665461Z"}],"total_count":1}' headers: Content-Length: - - "666" + - "689" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:17 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4462,7 +5982,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32056f6e-e975-4fa2-bb27-953661fb78f1 + - 5dcc94a7-507d-4b15-ab54-5ab9dfd9256d status: 200 OK code: 200 duration: "" @@ -4473,19 +5993,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/nodes?order_by=created_at_asc&page=1&pool_id=19cba59c-9914-4edd-8900-a0c9be287abc&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/nodes?order_by=created_at_asc&page=1&pool_id=9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:05:49.152534Z","error_message":null,"id":"c788523f-1dc9-49e1-861b-0424035aee98","name":"scw-k8spoolconfigminimal-minimal-c788523f1dc94","pool_id":"19cba59c-9914-4edd-8900-a0c9be287abc","provider_id":"scaleway://instance/fr-par-1/6e8e0e83-ec17-4b8e-8e49-e6370b8ca739","public_ip_v4":"51.158.104.129","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:09:13.688439Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:50:29.077607Z","error_message":null,"id":"4bf49a53-286a-47b9-9073-75aac8717ac0","name":"scw-test-pool-minima-test-pool-minimal--4bf49a","pool_id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","provider_id":"scaleway://instance/fr-par-1/bd30346a-89e9-4e47-b9bb-734491a2aaa0","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:55:25.627946Z"}],"total_count":1}' headers: Content-Length: - - "622" + - "657" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:17 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4495,7 +6015,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 847f106f-0227-4c90-a88c-980361a92fc4 + - e719a7e1-fb5b-469a-827b-eba8717bd216 status: 200 OK code: 200 duration: "" @@ -4506,19 +6026,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/nodes?order_by=created_at_asc&page=1&pool_id=9768e9ff-b155-401a-bc85-e022c1757a74&status=unknown + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/86352ce5-787c-449c-9998-79898166204d method: GET response: - body: '{"nodes":[{"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:34.240822Z","error_message":null,"id":"04f2ce32-f06f-4911-a69b-d7641b7fc331","name":"scw-k8spoolconfigminimal-default-04f2ce32f06f4","pool_id":"9768e9ff-b155-401a-bc85-e022c1757a74","provider_id":"scaleway://instance/fr-par-1/c9c1978e-d67b-415e-93aa-1524f7a25c0e","public_ip_v4":"163.172.130.18","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:09:13.733947Z"}],"total_count":1}' + body: '{"created_at":"2023-10-18T16:43:19.912799Z","dhcp_enabled":true,"id":"86352ce5-787c-449c-9998-79898166204d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:19.912799Z","id":"e8dae137-1a4b-466e-835a-826dcf62fdd7","subnet":"172.16.40.0/22","updated_at":"2023-10-18T16:43:19.912799Z"},{"created_at":"2023-10-18T16:43:19.912799Z","id":"7ecbb54d-39e3-4c8a-b892-21165c91b24f","subnet":"fd63:256c:45f7:af6c::/64","updated_at":"2023-10-18T16:43:19.912799Z"}],"tags":[],"updated_at":"2023-10-18T16:43:19.912799Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "652" + - "718" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:17 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4528,7 +6048,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 544eaf8c-4b0f-4d82-bda1-28bdc0f9d9de + - c8eec1bd-0bd7-4eb2-8e5b-1f41f675801b status: 200 OK code: 200 duration: "" @@ -4539,19 +6059,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:01.908656Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:55:25.642729Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1466" + - "678" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:18 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4561,7 +6081,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f79f4b66-14af-4dcd-a9b3-d939315cfae8 + - 185cfb81-332c-4bfd-9229-9aaba642b2b1 status: 200 OK code: 200 duration: "" @@ -4572,19 +6092,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:09:13.701840Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:45:13.613947Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "666" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:18 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4594,7 +6114,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfbb2a43-5036-4da6-8b5c-b0aa22fb6525 + - 0b27cdbc-884e-45fa-ad08-b76215443d5b status: 200 OK code: 200 duration: "" @@ -4605,19 +6125,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/nodes?order_by=created_at_asc&page=1&pool_id=19cba59c-9914-4edd-8900-a0c9be287abc&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/nodes?order_by=created_at_asc&page=1&pool_id=9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:05:49.152534Z","error_message":null,"id":"c788523f-1dc9-49e1-861b-0424035aee98","name":"scw-k8spoolconfigminimal-minimal-c788523f1dc94","pool_id":"19cba59c-9914-4edd-8900-a0c9be287abc","provider_id":"scaleway://instance/fr-par-1/6e8e0e83-ec17-4b8e-8e49-e6370b8ca739","public_ip_v4":"51.158.104.129","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:09:13.688439Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:50:29.077607Z","error_message":null,"id":"4bf49a53-286a-47b9-9073-75aac8717ac0","name":"scw-test-pool-minima-test-pool-minimal--4bf49a","pool_id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","provider_id":"scaleway://instance/fr-par-1/bd30346a-89e9-4e47-b9bb-734491a2aaa0","public_ip_v4":"51.15.216.28","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:55:25.627946Z"}],"total_count":1}' headers: Content-Length: - - "622" + - "657" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:18 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4627,7 +6147,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9636f54-d613-45b5-a1bf-354005eabffe + - 88995ea3-fbd2-42e5-ab7e-8afccf3b9598 status: 200 OK code: 200 duration: "" @@ -4638,19 +6158,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQwaERDa2czU2s4elRrZ3hMeTk0WkU5emVYb3hXR1FyVkVGUmJWTktWRmN4VWxaS1VUTXhhbmxFZG1WU05GQkJNRnBYUW1SbmQxUldSMjR4YzJ4VFUyNWFTV2dLYTFSbWVGSmFkemRNT1hScVZWSnNORTFSUmxoNVMwMXdTMjVKTW5Ob2RHTkJURTloVlhacFVrcHRMMU5FZVhaaFVsZDVSVWR0ZFRod2JuWnRWa3AzUWdwblRFeG9SVGMyUkV0NFpFMTNSMFlyYTA5dVVEQnFRV3BvV0hGcloyUlFLMHQwZDJ0SWNsSkxXa1YzUlc1V1VGRnNkRUpaYkc1YVdVWjZVRTFPZUZFNENtTkhTV2hhTDI5VWQyZzJVelJIVDNveWVsVktRVEptT0d4SFIzSlRjSGh0T0ZGVVFWTnlWSFpMVkUxV2JsTlJhRlE0UVdSWlYxWnRkVmhpTTNnMlNYb0tNWElyVkRkblUwMWFWVnBwTUhZMGJVSjVVRGd2ZEZGb2VqQlBVR3RsTW5SdFFYbFBiMHN3U1cxc2JsY3hTM3BwY1U4MU5XdHZOMXBoYmpoalNuUjBRZ3BuZFd4TE1HaHdkRVU1V1RreWRuUTNaM2hWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGYjBZMGREbG9kM1pxWlZkR1lVNHlTVXhpWTFkdFRtRlRaMFZOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVGpZemFIUTRhRzFPY1N0TWJpOVdkVzFxT0RORFZtOW9kMHR1VmxOS1FVVjBXV2xMUWpOcFRERlhiVzVWVDJsdVZncE9SMjlRZUUxUFJTdEdjRFJqTDJwWU4wTjJVblJEV0RScmNHNVdUU3RQUW5SUlEzRkxaVzV0U2pac1VHZFpUbU00YjBGUWNESmtPVE5RTTNBNWFGbFpDa1V2WVhSd1dUSTFVR1YyZDFkT2NtcHZjMHBGWVhOck4xVnBkRmRSZEVoeVJtOXFRMGRwVTBWRlFVcGFOVkV5YzFOaWJYWkRTRFZHTUZwbFJEVk1SVkFLVDJvM1ZVVXpOMnRDTDJKek9ESnplbUY2UXl0S2FWWjVRVzVOTkZGdWJqQkxkbTV2WkdKTlRGTXpUbFZCWVZaUVR6TXdaRVZyVEVSbVdIcHdhMjQzYWdwWlRVaDZkRVpHWXpoTFVuaG1Xak14T0VKWE5qUTBjSFoyTm1aUGNWWlJOa1pJTWtwaE9FNDBkRmsyTjB4VVJsRTVWelZNVUdKellrOXBUekpxUVRFekNtUnFkMnB6WVdocVdVcEJVRFZVVjNsNlprcHVjMEZHZDFCNlZIbzBSWFJxUlhwMk5nb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9iODM3NzdiOS03MjE2LTQ0OWYtYTBiNS1hZGY2MGY3NjU3OWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ21pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ21pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlnbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWdtaW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA3U3BlNUNXcW5EZlY0Q3JjM0JiVnFXcXRTTGtxTlhENWR4MTc1dVFSc3hLNWNTcHJxV1ZObTdjZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTmVVMXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMTVUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYZzRDbmhMZVU4NGFIaFdaVVJGYTA0eWRtOUxjRlJzZDBoSlNrUXJiMlY0WjJaQllVUkNiV3B2YTBoSFZTdGxjekp5WkhWWE5qbEdiR3RWYWpaRlVGQjBiUzhLUm5sQ1NrUjBlR1JxWjFnelRsTlNVelppYVRGM1QwUnpSMnRwVEU1bloxcG9kRlIwVjFNM1RsaHZkeTl6VGpncmNUVXlkVWg2VURCcmNrbHdUMkZyT0FwalpscG5ORVo2VVhsMFpXOXJTbGMxTUd4eVlsZHROVW8wYzFaVEwwdGxibFI1T1UxM1NsRlRORU0yZW5oMlIweGtlakZUTjJGaFNXaHRLMHhNT1U5bkNtaDBMMGRNV1RGS1RVNXFPVXd3UXpaRVFuVTJiV2hoT0dOSGFVMUNSbUU1VFdWTWFrcE5Namt4V1ROU1lYQk1OR3hVUkhBekt6ZEVNemREUjA4MlJVZ0tRblJ5UVdaMmQxVnFkbXhLTVRKM2QySlZZbVZTTWtaaWJEaFlhMU5VUzFWRVQwdHRSbWhoVFRnNFZtSnpNamxOTTBGck1VeHNhMnBxUldKNVdHNUllQXBaWTJOMllqSXdaazlzVDBKRVpsaG9ORUV3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpDTVVab2RYSTVUVGhaTTJwa2MzbFVlbUp1ZDNGSlZHSjJSakpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDTkVneFdFbDNNVkZ4VG1oWGNtb3dZbGxZTm10NmVuSkpjMEZTYVVJdlpFTkliSEZGYzBkRkwyRktVVlJ6Y25CUlZncFNSWHB5VFVzNFZuUm9Za3huUzNwblQwRmFObkJYV1hWRmFuTkZTbnBoU0ZsdE1EbDNhRFZNTUZGUWQwTnVUaXRUU25FNE1uUmxkRU0wT0RoM2JGbFJDbGwwYlVscU5VZExOVW8zYWxocFUzWjNSa016YlVwTFVHMTVhSFpIU2tGV1lWRlNSMWR2WVVORVJIcG5VMjVOUTBwbWVYTTBTSHBFY0VGSWNHbHFWRmdLTUhSclNFcENVMk0wYlVWWlNXbEZiRTlTUVhSNEswdFRhMGhFYkRWSmNFVkxZM1ptWVRnMmFXTlRPR1JDU1dKSVMyaEVVV2htTnpsUE9ERTRWVTVWUndveWFqUmFSbTlsU2xBcmRHcE9XRnBITkhobWMyRnNSVXBMWWtSb1VYZEtZa2xWWTBONk5VaFFUREpHWms1amQzZ3lOREZ3ZGk5b1dpdEthR3hDV2prNUNubGtPVGg1V2xweFlsaFNWWEJIUm1VdlNrcHNXa2hHVWxOTVJrbDBhVXA2U2taNE1Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly80MjJmM2EwZi04NjcyLTQ3ZDAtYmE0My1lNmY3MGZlNTczZDMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIVU1YeENkOFd0MnJRSnRvWmdqN3pVcUxSa2UwdHp6Vm9aT0Rvb3JUdURFcjltT2Zxc0NlMXU0Uw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2654" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:18 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4660,7 +6180,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ec99d3d-a327-4fdf-b4b5-7b35597ad6a6 + - eb2c7b1b-b3b1-430e-81aa-882b15ee60b9 status: 200 OK code: 200 duration: "" @@ -4671,19 +6191,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:05:43.187752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:50:25.595417Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "666" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:18 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4693,7 +6213,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed407411-6ff9-4de2-be20-e6eb9058eb13 + - 8ab81116-78c3-4c7a-9916-128a0806d20d status: 200 OK code: 200 duration: "" @@ -4704,19 +6224,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/nodes?order_by=created_at_asc&page=1&pool_id=9768e9ff-b155-401a-bc85-e022c1757a74&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/nodes?order_by=created_at_asc&page=1&pool_id=e903ea26-fed8-4d2e-83ac-80da5478e6f6&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:34.240822Z","error_message":null,"id":"04f2ce32-f06f-4911-a69b-d7641b7fc331","name":"scw-k8spoolconfigminimal-default-04f2ce32f06f4","pool_id":"9768e9ff-b155-401a-bc85-e022c1757a74","provider_id":"scaleway://instance/fr-par-1/c9c1978e-d67b-415e-93aa-1524f7a25c0e","public_ip_v4":"163.172.130.18","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:09:13.733947Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:45:22.864846Z","error_message":null,"id":"763cccf3-28bc-4a71-bf3f-50743fa64646","name":"scw-test-pool-minimal-test-pool-minimal-763ccc","pool_id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","provider_id":"scaleway://instance/fr-par-1/c6df0307-f00a-4a58-89b5-7d39cfeff63b","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:55:25.665461Z"}],"total_count":1}' headers: Content-Length: - - "652" + - "689" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:18 GMT + - Wed, 18 Oct 2023 16:55:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4726,7 +6246,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea2c27f6-f63a-48a0-a5e1-ef0bf6b3a07d + - 66f04e77-3940-43ae-b4d8-2e4c144550e9 status: 200 OK code: 200 duration: "" @@ -4737,19 +6257,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/19cba59c-9914-4edd-8900-a0c9be287abc + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200 method: DELETE response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:05:48.413866Z","id":"19cba59c-9914-4edd-8900-a0c9be287abc","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-17T10:09:18.956023625Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:50:28.582542Z","id":"9fb309dc-4484-4c7d-b4cd-c6d8f0ac0200","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"updated_at":"2023-10-18T16:55:30.527431751Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "684" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:55:30 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2e92d85-d1e3-4a61-ad38-9c662f06c208 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:45:13.613947Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "672" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:18 GMT + - Wed, 18 Oct 2023 16:55:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4759,7 +6312,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e7d2206-99f9-43b4-a5ce-06920292f4ef + - 4265ebf3-1ddd-4ca1-af64-eeb345999942 status: 200 OK code: 200 duration: "" @@ -4770,19 +6323,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/86352ce5-787c-449c-9998-79898166204d method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:01.908656Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"created_at":"2023-10-18T16:43:19.912799Z","dhcp_enabled":true,"id":"86352ce5-787c-449c-9998-79898166204d","name":"test-pool-minimal","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:19.912799Z","id":"e8dae137-1a4b-466e-835a-826dcf62fdd7","subnet":"172.16.40.0/22","updated_at":"2023-10-18T16:43:19.912799Z"},{"created_at":"2023-10-18T16:43:19.912799Z","id":"7ecbb54d-39e3-4c8a-b892-21165c91b24f","subnet":"fd63:256c:45f7:af6c::/64","updated_at":"2023-10-18T16:43:19.912799Z"}],"tags":[],"updated_at":"2023-10-18T16:43:19.912799Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1466" + - "718" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:19 GMT + - Wed, 18 Oct 2023 16:55:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4792,7 +6345,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4c478a9-473d-4519-987d-ef89d5c84d69 + - b8a5a7da-4221-4a9a-9654-7d570b3e618a status: 200 OK code: 200 duration: "" @@ -4803,19 +6356,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:01.908656Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:45:13.613947Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1466" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:19 GMT + - Wed, 18 Oct 2023 16:55:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4825,7 +6378,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02f14412-397a-4b6e-adc7-d3310f22ac66 + - 42d68eef-cd3f-4bef-bd13-a3de11d8bb86 status: 200 OK code: 200 duration: "" @@ -4836,19 +6389,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQwaERDa2czU2s4elRrZ3hMeTk0WkU5emVYb3hXR1FyVkVGUmJWTktWRmN4VWxaS1VUTXhhbmxFZG1WU05GQkJNRnBYUW1SbmQxUldSMjR4YzJ4VFUyNWFTV2dLYTFSbWVGSmFkemRNT1hScVZWSnNORTFSUmxoNVMwMXdTMjVKTW5Ob2RHTkJURTloVlhacFVrcHRMMU5FZVhaaFVsZDVSVWR0ZFRod2JuWnRWa3AzUWdwblRFeG9SVGMyUkV0NFpFMTNSMFlyYTA5dVVEQnFRV3BvV0hGcloyUlFLMHQwZDJ0SWNsSkxXa1YzUlc1V1VGRnNkRUpaYkc1YVdVWjZVRTFPZUZFNENtTkhTV2hhTDI5VWQyZzJVelJIVDNveWVsVktRVEptT0d4SFIzSlRjSGh0T0ZGVVFWTnlWSFpMVkUxV2JsTlJhRlE0UVdSWlYxWnRkVmhpTTNnMlNYb0tNWElyVkRkblUwMWFWVnBwTUhZMGJVSjVVRGd2ZEZGb2VqQlBVR3RsTW5SdFFYbFBiMHN3U1cxc2JsY3hTM3BwY1U4MU5XdHZOMXBoYmpoalNuUjBRZ3BuZFd4TE1HaHdkRVU1V1RreWRuUTNaM2hWUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGYjBZMGREbG9kM1pxWlZkR1lVNHlTVXhpWTFkdFRtRlRaMFZOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEVGpZemFIUTRhRzFPY1N0TWJpOVdkVzFxT0RORFZtOW9kMHR1VmxOS1FVVjBXV2xMUWpOcFRERlhiVzVWVDJsdVZncE9SMjlRZUUxUFJTdEdjRFJqTDJwWU4wTjJVblJEV0RScmNHNVdUU3RQUW5SUlEzRkxaVzV0U2pac1VHZFpUbU00YjBGUWNESmtPVE5RTTNBNWFGbFpDa1V2WVhSd1dUSTFVR1YyZDFkT2NtcHZjMHBGWVhOck4xVnBkRmRSZEVoeVJtOXFRMGRwVTBWRlFVcGFOVkV5YzFOaWJYWkRTRFZHTUZwbFJEVk1SVkFLVDJvM1ZVVXpOMnRDTDJKek9ESnplbUY2UXl0S2FWWjVRVzVOTkZGdWJqQkxkbTV2WkdKTlRGTXpUbFZCWVZaUVR6TXdaRVZyVEVSbVdIcHdhMjQzYWdwWlRVaDZkRVpHWXpoTFVuaG1Xak14T0VKWE5qUTBjSFoyTm1aUGNWWlJOa1pJTWtwaE9FNDBkRmsyTjB4VVJsRTVWelZNVUdKellrOXBUekpxUVRFekNtUnFkMnB6WVdocVdVcEJVRFZVVjNsNlprcHVjMEZHZDFCNlZIbzBSWFJxUlhwMk5nb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9iODM3NzdiOS03MjE2LTQ0OWYtYTBiNS1hZGY2MGY3NjU3OWYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ21pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWdtaW5pbWFsIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ21pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlnbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWdtaW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiA3U3BlNUNXcW5EZlY0Q3JjM0JiVnFXcXRTTGtxTlhENWR4MTc1dVFSc3hLNWNTcHJxV1ZObTdjZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VGtSTmVVMXNiMWhFVkUxNlRWUkJlRTU2UlRKT1JFMTVUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRYZzRDbmhMZVU4NGFIaFdaVVJGYTA0eWRtOUxjRlJzZDBoSlNrUXJiMlY0WjJaQllVUkNiV3B2YTBoSFZTdGxjekp5WkhWWE5qbEdiR3RWYWpaRlVGQjBiUzhLUm5sQ1NrUjBlR1JxWjFnelRsTlNVelppYVRGM1QwUnpSMnRwVEU1bloxcG9kRlIwVjFNM1RsaHZkeTl6VGpncmNUVXlkVWg2VURCcmNrbHdUMkZyT0FwalpscG5ORVo2VVhsMFpXOXJTbGMxTUd4eVlsZHROVW8wYzFaVEwwdGxibFI1T1UxM1NsRlRORU0yZW5oMlIweGtlakZUTjJGaFNXaHRLMHhNT1U5bkNtaDBMMGRNV1RGS1RVNXFPVXd3UXpaRVFuVTJiV2hoT0dOSGFVMUNSbUU1VFdWTWFrcE5Namt4V1ROU1lYQk1OR3hVUkhBekt6ZEVNemREUjA4MlJVZ0tRblJ5UVdaMmQxVnFkbXhLTVRKM2QySlZZbVZTTWtaaWJEaFlhMU5VUzFWRVQwdHRSbWhoVFRnNFZtSnpNamxOTTBGck1VeHNhMnBxUldKNVdHNUllQXBaWTJOMllqSXdaazlzVDBKRVpsaG9ORUV3UTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpDTVVab2RYSTVUVGhaTTJwa2MzbFVlbUp1ZDNGSlZHSjJSakpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDTkVneFdFbDNNVkZ4VG1oWGNtb3dZbGxZTm10NmVuSkpjMEZTYVVJdlpFTkliSEZGYzBkRkwyRktVVlJ6Y25CUlZncFNSWHB5VFVzNFZuUm9Za3huUzNwblQwRmFObkJYV1hWRmFuTkZTbnBoU0ZsdE1EbDNhRFZNTUZGUWQwTnVUaXRUU25FNE1uUmxkRU0wT0RoM2JGbFJDbGwwYlVscU5VZExOVW8zYWxocFUzWjNSa016YlVwTFVHMTVhSFpIU2tGV1lWRlNSMWR2WVVORVJIcG5VMjVOUTBwbWVYTTBTSHBFY0VGSWNHbHFWRmdLTUhSclNFcENVMk0wYlVWWlNXbEZiRTlTUVhSNEswdFRhMGhFYkRWSmNFVkxZM1ptWVRnMmFXTlRPR1JDU1dKSVMyaEVVV2htTnpsUE9ERTRWVTVWUndveWFqUmFSbTlsU2xBcmRHcE9XRnBITkhobWMyRnNSVXBMWWtSb1VYZEtZa2xWWTBONk5VaFFUREpHWms1amQzZ3lOREZ3ZGk5b1dpdEthR3hDV2prNUNubGtPVGg1V2xweFlsaFNWWEJIUm1VdlNrcHNXa2hHVWxOTVJrbDBhVXA2U2taNE1Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly80MjJmM2EwZi04NjcyLTQ3ZDAtYmE0My1lNmY3MGZlNTczZDMuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1taW5pbWFsIgogICAgdXNlcjogdGVzdC1wb29sLW1pbmltYWwtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBIVU1YeENkOFd0MnJRSnRvWmdqN3pVcUxSa2UwdHp6Vm9aT0Rvb3JUdURFcjltT2Zxc0NlMXU0Uw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2654" + - "2630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:19 GMT + - Wed, 18 Oct 2023 16:55:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4858,7 +6411,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc4efa8f-9fb0-4427-8f27-ffec57e57fc1 + - e3c9de36-8e32-48e3-8a99-edc2fb16ac47 status: 200 OK code: 200 duration: "" @@ -4869,19 +6422,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:05:43.187752Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:50:25.595417Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "666" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:19 GMT + - Wed, 18 Oct 2023 16:55:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4891,7 +6444,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e854c56c-6ce6-4f03-a479-5a0a52f11f55 + - c3aeee7e-a1a4-4e88-b0fe-f6a783894aaf status: 200 OK code: 200 duration: "" @@ -4902,19 +6455,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f/nodes?order_by=created_at_asc&page=1&pool_id=9768e9ff-b155-401a-bc85-e022c1757a74&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3/nodes?order_by=created_at_asc&page=1&pool_id=e903ea26-fed8-4d2e-83ac-80da5478e6f6&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:34.240822Z","error_message":null,"id":"04f2ce32-f06f-4911-a69b-d7641b7fc331","name":"scw-k8spoolconfigminimal-default-04f2ce32f06f4","pool_id":"9768e9ff-b155-401a-bc85-e022c1757a74","provider_id":"scaleway://instance/fr-par-1/c9c1978e-d67b-415e-93aa-1524f7a25c0e","public_ip_v4":"163.172.130.18","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:09:19.395780Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:45:22.864846Z","error_message":null,"id":"763cccf3-28bc-4a71-bf3f-50743fa64646","name":"scw-test-pool-minimal-test-pool-minimal-763ccc","pool_id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","provider_id":"scaleway://instance/fr-par-1/c6df0307-f00a-4a58-89b5-7d39cfeff63b","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:55:31.102553Z"}],"total_count":1}' headers: Content-Length: - - "652" + - "689" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:19 GMT + - Wed, 18 Oct 2023 16:55:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4924,7 +6477,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f24ebcc-5483-461a-8326-91eef05a595c + - 4e857004-85ba-49a0-86a9-d49287fd27bf status: 200 OK code: 200 duration: "" @@ -4935,19 +6488,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/9768e9ff-b155-401a-bc85-e022c1757a74 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e903ea26-fed8-4d2e-83ac-80da5478e6f6 method: DELETE response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b83777b9-7216-449f-a0b5-adf60f76579f","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.336885Z","id":"9768e9ff-b155-401a-bc85-e022c1757a74","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-17T10:09:20.173816049Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","container_runtime":"containerd","created_at":"2023-10-18T16:43:26.636841Z","id":"e903ea26-fed8-4d2e-83ac-80da5478e6f6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","default"],"updated_at":"2023-10-18T16:55:31.997813105Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "672" + - "682" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:20 GMT + - Wed, 18 Oct 2023 16:55:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4957,7 +6510,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c6b906e-3d65-4bbd-8ffd-37ae02c4a9aa + - ad5b6a67-710a-4eeb-a32a-6cdd287cca17 status: 200 OK code: 200 duration: "" @@ -4968,19 +6521,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3?with_additional_resources=true method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:09:20.255543440Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:55:32.215792849Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1472" + - "1503" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:20 GMT + - Wed, 18 Oct 2023 16:55:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4990,7 +6543,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32b2c36e-39bf-437c-ab58-5ed9934a922b + - 5eb3df26-dbda-46d2-8545-af1e5065f874 status: 200 OK code: 200 duration: "" @@ -5001,19 +6554,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:09:20.255543Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:55:32.215793Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1469" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:20 GMT + - Wed, 18 Oct 2023 16:55:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5023,7 +6576,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2116f692-baf7-4955-8072-05da733ba91b + - 9b70b564-b00b-49da-a381-ed3606cd47ec status: 200 OK code: 200 duration: "" @@ -5034,19 +6587,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:09:20.255543Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:55:32.215793Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1469" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:25 GMT + - Wed, 18 Oct 2023 16:55:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5056,7 +6609,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adb193a9-57d9-4222-a411-3077097df6f5 + - 1e01d7a2-1c7b-44f1-a483-8f38252ab298 status: 200 OK code: 200 duration: "" @@ -5067,19 +6620,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:09:20.255543Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:55:32.215793Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1469" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:30 GMT + - Wed, 18 Oct 2023 16:55:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5089,7 +6642,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b255dd6-c2cd-4333-8d60-2c352ca90a45 + - 2ef39f12-4c3b-4a6e-a6f6-0111826dc514 status: 200 OK code: 200 duration: "" @@ -5100,19 +6653,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:09:20.255543Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:55:32.215793Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1469" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:35 GMT + - Wed, 18 Oct 2023 16:55:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5122,7 +6675,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0b32dd8-7c19-4bd4-82f2-f44b7eec4f73 + - bab043a6-388d-48ad-a747-ca3e8b28994e status: 200 OK code: 200 duration: "" @@ -5133,19 +6686,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b83777b9-7216-449f-a0b5-adf60f76579f.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.771787Z","created_at":"2023-10-17T10:00:26.771787Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b83777b9-7216-449f-a0b5-adf60f76579f.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b83777b9-7216-449f-a0b5-adf60f76579f","ingress":"none","name":"K8SPoolConfigMinimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:09:20.255543Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://422f3a0f-8672-47d0-ba43-e6f70fe573d3.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T16:43:21.169294Z","created_at":"2023-10-18T16:43:21.169294Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.422f3a0f-8672-47d0-ba43-e6f70fe573d3.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","ingress":"none","name":"test-pool-minimal","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"86352ce5-787c-449c-9998-79898166204d","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-18T16:55:32.215793Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1469" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:40 GMT + - Wed, 18 Oct 2023 16:55:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5155,7 +6708,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5679e05c-f1f4-40a9-a842-6dea5f511972 + - dc0c9c96-abaa-489f-95d3-05e62058a7c8 status: 200 OK code: 200 duration: "" @@ -5166,10 +6719,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"b83777b9-7216-449f-a0b5-adf60f76579f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","type":"not_found"}' headers: Content-Length: - "128" @@ -5178,7 +6731,40 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:45 GMT + - Wed, 18 Oct 2023 16:55:57 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19f6af63-3225-4a70-a716-607656cd2c4b + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/86352ce5-787c-449c-9998-79898166204d + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"86352ce5-787c-449c-9998-79898166204d","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:55:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5188,7 +6774,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7c8eda7-483e-437a-b50f-05616becf1d6 + - 7468a16c-7976-459b-9370-40139e9864b2 status: 404 Not Found code: 404 duration: "" @@ -5199,10 +6785,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b83777b9-7216-449f-a0b5-adf60f76579f + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/422f3a0f-8672-47d0-ba43-e6f70fe573d3 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"b83777b9-7216-449f-a0b5-adf60f76579f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"422f3a0f-8672-47d0-ba43-e6f70fe573d3","type":"not_found"}' headers: Content-Length: - "128" @@ -5211,7 +6797,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:45 GMT + - Wed, 18 Oct 2023 16:55:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5221,7 +6807,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ce3e6ac-a7ae-4f52-8bf2-1cbf3866eebf + - a62ee659-5789-4785-af1f-1ebe0e8beed4 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-pool-kubelet-args.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-kubelet-args.cassette.yaml index fb2391448b..da24893162 100644 --- a/scaleway/testdata/k8s-cluster-pool-kubelet-args.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-pool-kubelet-args.cassette.yaml @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:21 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,80 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9ffc7bb-9190-49d9-8bda-ab6306220d1d + - e301e20e-dd66-453a-b65f-abd6eb8be628 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"K8SPoolConfigKubeletArgs","description":"","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-pool-kubelet-args","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-18T16:35:44.326008Z","dhcp_enabled":true,"id":"5af82341-c048-4f53-853a-3df5421d10f9","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.326008Z","id":"c16fa43b-e195-41c1-a918-26bfcb8118ed","subnet":"172.16.0.0/22","updated_at":"2023-10-18T16:35:44.326008Z"},{"created_at":"2023-10-18T16:35:44.326008Z","id":"1ba012b4-d607-4b55-96f6-9e4f65dd9b4d","subnet":"fd63:256c:45f7:8be8::/64","updated_at":"2023-10-18T16:35:44.326008Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.326008Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "722" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba9d7dae-79aa-49bc-8224-d7791fda0f3b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5af82341-c048-4f53-853a-3df5421d10f9 + method: GET + response: + body: '{"created_at":"2023-10-18T16:35:44.326008Z","dhcp_enabled":true,"id":"5af82341-c048-4f53-853a-3df5421d10f9","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.326008Z","id":"c16fa43b-e195-41c1-a918-26bfcb8118ed","subnet":"172.16.0.0/22","updated_at":"2023-10-18T16:35:44.326008Z"},{"created_at":"2023-10-18T16:35:44.326008Z","id":"1ba012b4-d607-4b55-96f6-9e4f65dd9b4d","subnet":"fd63:256c:45f7:8be8::/64","updated_at":"2023-10-18T16:35:44.326008Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.326008Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "722" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - abb61fe4-021d-44f1-899d-cccfaef5e654 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-kubelet-args","description":"","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9"}' form: {} headers: Content-Type: @@ -50,16 +118,16 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506455Z","created_at":"2023-10-17T10:05:37.413506455Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:05:37.426353399Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387747837Z","created_at":"2023-10-18T16:35:45.387747837Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:35:45.400146997Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1487" + - "1519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:37 GMT + - Wed, 18 Oct 2023 16:35:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +137,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ef2904d-102d-4faa-9c1e-1b582ae31050 + - 16e80935-014b-478c-9239-36f93756fc07 status: 200 OK code: 200 duration: "" @@ -80,19 +148,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:05:37.426353Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:35:45.400147Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1478" + - "1510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:37 GMT + - Wed, 18 Oct 2023 16:35:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,7 +170,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d45f5f6-45d7-4e3b-99e3-b6f8070ac985 + - f743f005-c272-4a2a-9bba-e43e8de4fd08 status: 200 OK code: 200 duration: "" @@ -113,19 +181,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:05:38.930322Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.031220Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1483" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:42 GMT + - Wed, 18 Oct 2023 16:35:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -135,7 +203,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 174a319a-fede-47e8-9088-679927963373 + - 18d17aa1-c714-473c-b106-6af60b133cf8 status: 200 OK code: 200 duration: "" @@ -146,19 +214,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:05:38.930322Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.031220Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1483" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:42 GMT + - Wed, 18 Oct 2023 16:35:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a86e1eda-a800-4e76-ae88-d2069a65a88e + - 9aa5a817-6e60-4b90-bd9f-4601ba933224 status: 200 OK code: 200 duration: "" @@ -179,19 +247,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWdrdWJlbGV0YXJncyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUlZlazlHYjFoRVZFMTZUVlJCZUU1cVJYZE5SRlY2VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURXBaQ21OSlJWaFBTamRUYWtaNVUwNTBWelJZU25GUGRWSkdWV05OZEVSamJtTkpUbnBqUm1GUE1tWjBlR2RIWld0V1NFMTNOVVpOTWpKQlZuYzRUVlpJZERrS2MwMVJSRmRwTUVFM1RrbHNUblJOTUVsV2RYRm5aV3BwWlUxbWRYVkVOMGR2V25KM01qVkJUSGc0U0hWWmR6Vllaa1JwWW1ORE4wdHFRMUo2ZFdOMmRRcDNlbGhNYldSMFMwWlNhbWgyWjJoTVoxWTRUbXRLU0N0aVVuVXhWbUUzY0RkRE9XWmxjemc1Y0V3elVFOTZUSGhXTVRoUVRIRlpZM2s1YkRoclRrVldDbU53WW1aTU0wSmhjR2x2V25FMlNtRTNTa1ZrUnk5YU1VcDJRMlJUUlU5NVdEbGtVR3hqVUZoTlJVbHFWVFZaVFVGbVZFNWljWGxRTUhrdksxcENZblVLZFhNcldFWllhU3RoT0ZSR09EQmhUa0pPUmpCM1pYVjZPRUpvUlZKSWRFaE5kRWw1VnpVMk9UWlVVMUl5ZDFoU1J5OW5TVlZ0VDBoUksybEtOV3g1VGdwclRHUjVZVGsxTVhwVVZqbDVNak5RVjNRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSU1YZFNMMkZaVVM5SlJuRkZRbkZTZFRZNE5HMHpjRXBSUmtKTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1RtbGFSakJZTDBKNVVYUlVUaXQxWjAxamMwZHdkSFJ1UXpONFl6SmFWWFZFUkdWRE0wMDRSVWM1Vld0RU1sQnpRd293V21Oc01DdG9URGRZWlcxUmVXcHJaMHR3Y2tGcFJqQjFja0o2YXpOWEszTndaamRhVEhFeVV6TmphVXBhU0UwclZrWjNkeXRqTVU1WWVFb3ZaVVJqQ2xCWVRsSmhVMFJtVm5sR09UbDVSVUZvU0V4eFNGbFZhbEpUTUhoeVJHRjNOMjR2VHpGRFNrNWhlUzlKYlZWUE1rSXJkSFk1VUZod00waENPR1ZJYTNRS05DOWtOa1ppZWk5NGVEazBNRFEyUWs5Rk1tWkJWbEJhYjBoNlNGWkJVVmN6YjFkc1FVeFFiVkpqVjJKRFVtNW5RbFpWVG0xVlJGTlRhM0pDU2psT1NncEtRMWhXV0dSSmVHTm9hVTk2TDA0eGFGbG5OV2xFSzA4NFZGaGllVVEwVW14Q1dVNTRVVXRwYW1sWFZrOVRRelIyYzA0elJsTXhiMXBFTlZCQ1owRndDblZrYmpCWU0zVkNiMFJLVVd4cFpFb3dlR1JITkM5S1VVMUpXRWRwVTJVMU1GWTJhd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjk0NTgwMzMtMDgxNy00YjAzLWJjODItZTYyOWYwMDAyNjE1LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4c3Bvb2xjb25maWdrdWJlbGV0YXJncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGczFVNFZTVGRpS05UV3hLV2pFOUpRaWNuM1RGZExsWjlyTEpNRlpwWDl1a0ExTTVtbWdmbnJCaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU1c2IxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RteHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEZsRUNpdEtiblpZTDBKeWVrbE9OVU5JT1ZGRWFqTmpNQ3RETlZveFFXVnVXbEo1VWpsR1JrSldja1FyY2xKeFFVTm1kVXR0WlhBNGNUSlpaamRCU2pJeFlpc0tTbTlHY0N0VllYaE5NbVF3YzJoNE0xRnVRazRyVUVKYU9HOWhXVmRhT0VKSGRHOTZWU3RNZFZkbGNVOXhLMHgxT0ZKaWNIbzBSRFJ3Tm5kTFoySkpjUW8wYzBSVVVYUktUR2czVUVsRE1tZEJWMnh0VW5Obk9FeHhlbXhSVWpkTE1ubEtWelpHVUM5emFHSnRiSHBVYUZOSWExRlJPSFZFWkRCVGFqTm5ZeloyQ21GSldtcDNhMDVhZUZSS1QzRjFNRFIxVVV4a05HeEpiME5UTUhOamJuQnhUWEZHTURFNU4xUktPREJOZEdnMlNGVnBObEJVV1dkWmNtazBabXd2T1dRS1NUQTBjV3BJZEVFNGFXZE9iM014VmsxWVdIbzVWbnBIYVRCdlVIcEtNbWh0YUdSVlZVaEtZMlpFVDBVclZDdFlhRzVyY2toNVRFSjBXbGxEUVRabFNRcHhVWEowTlRKdVFUUlhjblZpY2tsTFFVaHJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklWR3hwTWtSVVVYa3hTQzlwTjJkaU5uQmxlVEIxTlZCS1kweE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJjMVZZU0ZseVExRTBjRkZCYzNFek5DdGhURUpNV2tVcmNVTnlkSFl5YjJ0NVZWTktNMHhJVEhOV1pURmFNbkJJYlFwck1qaExiR3hYZG05MkswWlZNV3RJVHpKQ05tUnBLM293VWtvMGVuQXJiV2M1WkZGblNXcHVZVEZuSzJsSU1td3JiRnBMZEdWQ1dYZEpLMmxyVTJwQkNrOXZjRTl1ZGtacVUxWTNWVmtyV0RGRFpuTXdiRzlyVTBoQ1RDdFFjWG80YTJ3NE1HUjRNR1JXVTJGWlIzUXphV1ozTkVkTGIwTkhVVWx5YzJOU1RrMEtiRWRwVXk5b01HaE5URkIzYUc1bWQyVmlOV2MxV0M5d05ERkNVeloyYUROVlZHUm5aMjR2ZFU5RFUzbE5ka1E0VERNd2RYWkVTRFZtVDI1TGVrSlFiQXA2YlROdWVIUjFZME5SZFVKcVlWaGlWMmxVU0hWUFNGbFBNU3M0UjJoa1EzSmtNVlpGUzBWM1R5c3ZWVXR2UzJvNGFEVlFTRFYzZHpadFdYaGxOVEJyQ2tGcWRFNXFabW8xU2s5S2IwbERUVzFDZVVGa1N5c3pXa1ZSZFdOTVQwWm1Sa2xzV1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzRjNmZmNmM4LTViNDctNDY4MS05ZmM2LWRmZjdiMWI3NDIyNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiByV1F1MmNaNWFrVkhSVTFJN3VZYlJvUjFOT0xSMTNZeWt1UnhzcFpZdW5lM0lMeDNVcHNyQ0IxQw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2686" + - "2670" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:42 GMT + - Wed, 18 Oct 2023 16:35:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,7 +269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94000cda-8e4a-47fc-b3b8-5efd1f5076e3 + - 05a1ef32-ec3f-4c0b-a878-ccf31ae7a921 status: 200 OK code: 200 duration: "" @@ -212,19 +280,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:05:38.930322Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.031220Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1483" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:43 GMT + - Wed, 18 Oct 2023 16:35:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,12 +302,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9e42015-71a8-43d4-af3e-1f20a302fbb1 + - d461fa4b-f5a0-4384-b424-81ac22715f94 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"default","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"kubelet_args":{"maxPods":"1337"},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + body: '{"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"kubelet_args":{"maxPods":"1337"},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' form: {} headers: Content-Type: @@ -247,19 +315,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615/pools + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226/pools method: POST response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834490Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901132Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:43 GMT + - Wed, 18 Oct 2023 16:35:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,7 +337,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bc08385-2408-4ba3-b1e3-d4f5024c3304 + - 3a415342-4b66-49ab-b299-76e6f1aeff37 status: 200 OK code: 200 duration: "" @@ -280,19 +348,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:43 GMT + - Wed, 18 Oct 2023 16:35:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +370,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c150578-b8b5-48bc-b52d-f25c328b9983 + - d0873104-f8a2-4151-919d-beca1890ad55 status: 200 OK code: 200 duration: "" @@ -313,19 +381,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:48 GMT + - Wed, 18 Oct 2023 16:35:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -335,7 +403,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4815165-e2cc-4b80-ba6e-ec27fd071e1f + - 707a00c4-e141-469a-8854-0d69deb31505 status: 200 OK code: 200 duration: "" @@ -346,19 +414,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:53 GMT + - Wed, 18 Oct 2023 16:36:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -368,7 +436,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b9533ae-4221-4ef5-acdb-7a1544df42fb + - b1264cf5-f2b2-4462-a372-07a3984279fd status: 200 OK code: 200 duration: "" @@ -379,19 +447,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:58 GMT + - Wed, 18 Oct 2023 16:36:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +469,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03d25dba-82b5-47fa-be27-b04b5b01d8da + - 19024334-b66d-458e-8b9d-266a84286698 status: 200 OK code: 200 duration: "" @@ -412,19 +480,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:03 GMT + - Wed, 18 Oct 2023 16:36:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +502,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea1e6b15-626b-4d07-8f97-9dc51e4ac156 + - ee7fac32-a52d-4570-b6d7-6a2ea39ef452 status: 200 OK code: 200 duration: "" @@ -445,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:08 GMT + - Wed, 18 Oct 2023 16:36:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 079bc8b2-0cdd-4590-8672-f44cc2ccb944 + - 9017cc2b-8312-41da-b04b-38bb4634bd4b status: 200 OK code: 200 duration: "" @@ -478,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:13 GMT + - Wed, 18 Oct 2023 16:36:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09f801b1-9c0c-4e55-aa05-9f28d7cd729f + - 7bd2f34d-7775-4ece-9268-8a02e9b83370 status: 200 OK code: 200 duration: "" @@ -511,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:18 GMT + - Wed, 18 Oct 2023 16:36:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f06eece0-4f47-4d0b-aa25-0bb9b94bdd93 + - 72428e92-83fa-4a53-aa9f-99be4c8875af status: 200 OK code: 200 duration: "" @@ -544,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:23 GMT + - Wed, 18 Oct 2023 16:36:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a69ad800-c63d-48f6-80df-635f9fcd4f65 + - b02440fe-b144-4e31-a478-62bc6a9f53c6 status: 200 OK code: 200 duration: "" @@ -577,19 +645,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:28 GMT + - Wed, 18 Oct 2023 16:36:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 437e36ce-2ed9-460a-bd63-634ece8ac9de + - 7dcfe0df-d126-4e2d-a4fe-1c97f1436ca0 status: 200 OK code: 200 duration: "" @@ -610,19 +678,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:34 GMT + - Wed, 18 Oct 2023 16:36:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30480911-f450-443f-b10e-483de9e74001 + - 06cac110-a046-4a34-bef9-b7903119618f status: 200 OK code: 200 duration: "" @@ -643,19 +711,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:39 GMT + - Wed, 18 Oct 2023 16:36:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bd3c813-ecd7-43ec-bac2-028ee98ccba5 + - 49eda6a7-5904-4521-9edd-4a778508bf85 status: 200 OK code: 200 duration: "" @@ -676,19 +744,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:44 GMT + - Wed, 18 Oct 2023 16:36:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a867ca0-00ac-4f45-94a3-17f7743f847f + - bbf18e7d-daf8-4f2e-a1a4-6e6b8a2ad538 status: 200 OK code: 200 duration: "" @@ -709,19 +777,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:49 GMT + - Wed, 18 Oct 2023 16:36:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d18135ab-641b-4b0b-976f-6c75e0ada7a1 + - 4a09711f-d82f-47a1-806a-075f7cbf37c8 status: 200 OK code: 200 duration: "" @@ -742,19 +810,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:54 GMT + - Wed, 18 Oct 2023 16:37:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24f00470-0972-4562-bc32-559f334bc45b + - 0f436c08-e589-4e99-b68b-5185007bed55 status: 200 OK code: 200 duration: "" @@ -775,19 +843,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:59 GMT + - Wed, 18 Oct 2023 16:37:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -797,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adbf3606-8a0e-47ec-a6ee-d943fa91b681 + - 50def725-adee-48f2-8e74-d21b86d78981 status: 200 OK code: 200 duration: "" @@ -808,19 +876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:04 GMT + - Wed, 18 Oct 2023 16:37:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -830,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa459bc9-9dfd-4be8-8ea5-4c738b9116c4 + - c527af9b-ed62-418b-ac69-6c51cae3c851 status: 200 OK code: 200 duration: "" @@ -841,19 +909,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:09 GMT + - Wed, 18 Oct 2023 16:37:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -863,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fde0f86-283b-4d49-a702-8e88fd7cb01f + - 873bde1a-12b6-4748-b1e1-bc5d5f6a45ce status: 200 OK code: 200 duration: "" @@ -874,19 +942,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:14 GMT + - Wed, 18 Oct 2023 16:37:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -896,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9433a2e8-8012-455b-9842-c5854ed03925 + - 384cfc34-bc27-4ae1-b6e3-224d883b0cb7 status: 200 OK code: 200 duration: "" @@ -907,19 +975,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:19 GMT + - Wed, 18 Oct 2023 16:37:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88e6bbcd-8871-41e7-a2b7-0cccb1b29499 + - ab975a24-6728-4b64-b3af-836246ea26af status: 200 OK code: 200 duration: "" @@ -940,19 +1008,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:24 GMT + - Wed, 18 Oct 2023 16:37:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -962,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20f33ef1-0525-4ade-a5df-62f4f0cb170b + - 74ab4fce-7710-400e-8e87-8fa965f974b2 status: 200 OK code: 200 duration: "" @@ -973,19 +1041,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:29 GMT + - Wed, 18 Oct 2023 16:37:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -995,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4095ede8-3869-4e63-aa79-2a7761826777 + - 01c5fab4-c0ac-4d5e-9adf-441128a0f7c7 status: 200 OK code: 200 duration: "" @@ -1006,19 +1074,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:34 GMT + - Wed, 18 Oct 2023 16:37:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1028,7 +1096,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0986760-240f-4e6c-8183-a1c3bdf99256 + - dcd8d16b-f600-48f8-8ee8-b5ceb9c48753 status: 200 OK code: 200 duration: "" @@ -1039,19 +1107,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:39 GMT + - Wed, 18 Oct 2023 16:37:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1061,7 +1129,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a238c3bc-0be6-4c3f-af66-2d1e0d50d7ba + - b0fa0f02-1391-4ea8-bb59-43f1497d838b status: 200 OK code: 200 duration: "" @@ -1072,19 +1140,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:44 GMT + - Wed, 18 Oct 2023 16:37:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1094,7 +1162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab65fae6-95f0-4f38-ac9a-66979784e2fb + - 2a623e27-5b1f-4970-9882-15cdba1eee61 status: 200 OK code: 200 duration: "" @@ -1105,19 +1173,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:49 GMT + - Wed, 18 Oct 2023 16:37:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,7 +1195,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f033ae4-9918-4b64-a2c9-83dc89d092ab + - f10c38a3-d272-4381-ae19-cfd40cbb2132 status: 200 OK code: 200 duration: "" @@ -1138,19 +1206,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:54 GMT + - Wed, 18 Oct 2023 16:38:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +1228,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86e633a7-1274-4478-9c5a-779fea9aecd4 + - a0f63862-29fc-4621-901a-e48fe5deb5cf status: 200 OK code: 200 duration: "" @@ -1171,19 +1239,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:00 GMT + - Wed, 18 Oct 2023 16:38:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1193,7 +1261,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 992accca-26a5-4d0a-8101-e8021fbececf + - 7bd38984-4707-48dc-99e1-aa491c31e8c5 status: 200 OK code: 200 duration: "" @@ -1204,19 +1272,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:05 GMT + - Wed, 18 Oct 2023 16:38:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1226,7 +1294,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0fa9354-edd5-4fe0-a241-c97b5804a125 + - 0c16ef5f-e995-46c4-b21f-697e5a261a15 status: 200 OK code: 200 duration: "" @@ -1237,19 +1305,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:10 GMT + - Wed, 18 Oct 2023 16:38:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1259,7 +1327,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d44f17d2-70b5-493a-bd33-eec50ef7c45b + - 706fb776-05b6-4e14-ad2d-251932a7167f status: 200 OK code: 200 duration: "" @@ -1270,19 +1338,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:15 GMT + - Wed, 18 Oct 2023 16:38:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1292,7 +1360,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbe6ecd6-7033-4cb0-9de4-385094122e8c + - 76bcc239-b339-4d61-a3a4-6bbc62ea6643 status: 200 OK code: 200 duration: "" @@ -1303,19 +1371,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:20 GMT + - Wed, 18 Oct 2023 16:38:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1325,7 +1393,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0a05ad9-6825-449e-b95c-04f69bbd6b39 + - c9243eef-b62f-4066-9b15-60ff4021bdad status: 200 OK code: 200 duration: "" @@ -1336,19 +1404,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:25 GMT + - Wed, 18 Oct 2023 16:38:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1358,7 +1426,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6ef5980-257d-4afc-98b7-9a4b61ebe079 + - 1f529ebc-7b64-4c95-ae8d-383299bb439c status: 200 OK code: 200 duration: "" @@ -1369,19 +1437,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:30 GMT + - Wed, 18 Oct 2023 16:38:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1391,7 +1459,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa281225-d47f-4cce-9ac1-ce6e5ed496be + - 527730d3-78f7-4ddb-a8ed-b57670edb93e status: 200 OK code: 200 duration: "" @@ -1402,19 +1470,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:35 GMT + - Wed, 18 Oct 2023 16:38:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1424,7 +1492,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5ae098e-acc3-4db5-b4c7-d9423a9cc7d9 + - b7605fec-d55c-4dcc-93aa-c7e8215066fc status: 200 OK code: 200 duration: "" @@ -1435,19 +1503,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:40 GMT + - Wed, 18 Oct 2023 16:38:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1457,7 +1525,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1caac16-03a0-44a9-89d8-2b0a796c7fdb + - 0db76d12-ef97-42cd-ba9f-4a0b10291e93 status: 200 OK code: 200 duration: "" @@ -1468,19 +1536,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:45 GMT + - Wed, 18 Oct 2023 16:38:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1490,7 +1558,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64e00993-ab9b-448d-9e1a-2c674179d264 + - cc5c0085-29f5-4fcf-94d3-5447b5f933a5 status: 200 OK code: 200 duration: "" @@ -1501,19 +1569,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:50 GMT + - Wed, 18 Oct 2023 16:38:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1523,7 +1591,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 113a16b4-ddbb-457d-ba90-77b631edd012 + - dd2d097d-3f28-4aec-9bca-2f852e7b6189 status: 200 OK code: 200 duration: "" @@ -1534,19 +1602,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:55 GMT + - Wed, 18 Oct 2023 16:39:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1556,7 +1624,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55074d83-9cda-41b4-8269-75b13abda837 + - e6b2cfe5-9e55-4396-acff-e72fe1ef0155 status: 200 OK code: 200 duration: "" @@ -1567,19 +1635,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:00 GMT + - Wed, 18 Oct 2023 16:39:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1589,7 +1657,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d01c46e-a30b-4f0b-9ff2-c9958818109d + - 702e5135-2014-4210-b598-dcb4f4548fb9 status: 200 OK code: 200 duration: "" @@ -1600,19 +1668,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:06 GMT + - Wed, 18 Oct 2023 16:39:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1622,7 +1690,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - badfca2a-1945-4114-bee7-786010d65147 + - 5212cf12-66e8-4344-b7c9-ad47cddd16ba status: 200 OK code: 200 duration: "" @@ -1633,19 +1701,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:11 GMT + - Wed, 18 Oct 2023 16:39:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1655,7 +1723,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f89d8936-5fd8-4f27-bc54-cbac413d87db + - f7281e01-fd5a-48b2-9b15-67fbd354b3ce status: 200 OK code: 200 duration: "" @@ -1666,19 +1734,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:16 GMT + - Wed, 18 Oct 2023 16:39:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1688,7 +1756,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4ddb49c-30cc-46e6-be57-f17cf3ad88fb + - 2bc35cd8-3e76-44b3-b72a-c17bc0a5a98c status: 200 OK code: 200 duration: "" @@ -1699,19 +1767,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:21 GMT + - Wed, 18 Oct 2023 16:39:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1721,7 +1789,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5105d682-1cdc-447b-a604-fc4b056507ea + - b1dc323f-974c-4ee2-ae8d-2fffa078ebfc status: 200 OK code: 200 duration: "" @@ -1732,19 +1800,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:27 GMT + - Wed, 18 Oct 2023 16:39:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1754,7 +1822,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0abd02ae-f42d-4d82-b16d-97da206e7787 + - 2e7edfad-ba71-4f9e-b9bc-8c0a62ea2800 status: 200 OK code: 200 duration: "" @@ -1765,19 +1833,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:32 GMT + - Wed, 18 Oct 2023 16:39:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1787,7 +1855,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6912483-d813-45da-8bb4-0cf6f6403610 + - e2bea3b9-edba-4e0d-958c-d90f42f25dc0 status: 200 OK code: 200 duration: "" @@ -1798,19 +1866,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:37 GMT + - Wed, 18 Oct 2023 16:39:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1820,7 +1888,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b9b7045-ed67-4b9f-aa27-7dcdb0246cb4 + - c603c20b-1f3d-462d-bae1-22930b4fb6c6 status: 200 OK code: 200 duration: "" @@ -1831,19 +1899,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:42 GMT + - Wed, 18 Oct 2023 16:39:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1853,7 +1921,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f76303b-e240-45df-8f71-600d5c8ac92a + - a5d6c737-29ce-468f-be71-08e22a39d3d0 status: 200 OK code: 200 duration: "" @@ -1864,19 +1932,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:47 GMT + - Wed, 18 Oct 2023 16:39:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1886,7 +1954,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28b4f768-bfd4-4e24-8500-21569248e0be + - df39f702-5aa5-40d1-9434-d119d0270ab5 status: 200 OK code: 200 duration: "" @@ -1897,19 +1965,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:52 GMT + - Wed, 18 Oct 2023 16:40:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1919,7 +1987,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1c9180c-f905-44ad-9734-9c9f0c66a496 + - 3158d86d-b6ca-4a19-ae55-f8ba52ee595e status: 200 OK code: 200 duration: "" @@ -1930,19 +1998,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:57 GMT + - Wed, 18 Oct 2023 16:40:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1952,7 +2020,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3ee105f-a6f8-4094-84f8-2c5154bfdc06 + - addc9323-16a1-436f-9e4c-c50169812916 status: 200 OK code: 200 duration: "" @@ -1963,19 +2031,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:02 GMT + - Wed, 18 Oct 2023 16:40:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1985,7 +2053,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e21a978f-b978-4e30-90e0-ba91881bb228 + - a44719d0-6eb4-40c9-9a9c-a60c6bb6d3d6 status: 200 OK code: 200 duration: "" @@ -1996,19 +2064,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:05:43.127834Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:07 GMT + - Wed, 18 Oct 2023 16:40:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2018,7 +2086,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64128b0b-571f-498b-8e6d-90cf87f1f6f1 + - 24e4bb29-5e21-43f9-8fff-2ae775ef3ee9 status: 200 OK code: 200 duration: "" @@ -2029,19 +2097,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:10:09.178583Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "687" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:12 GMT + - Wed, 18 Oct 2023 16:40:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2051,7 +2119,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afc8a54d-f1c7-47cb-be02-a1d2e9ce7082 + - 652c4180-4a72-4263-9420-07133d4f4a0d status: 200 OK code: 200 duration: "" @@ -2062,19 +2130,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:06:32.979190Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1475" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:12 GMT + - Wed, 18 Oct 2023 16:40:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2084,7 +2152,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d969e5ce-b0e2-4ea4-8cda-9ade72828c48 + - 4394c860-99ec-4d91-97ce-cf12dec15e29 status: 200 OK code: 200 duration: "" @@ -2095,19 +2163,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:10:09.178583Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "687" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:12 GMT + - Wed, 18 Oct 2023 16:40:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2117,7 +2185,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4885c862-aeb2-48a1-ae9c-169e1b358cad + - be5e8e2e-7916-47ee-8640-b5dc1a172eb7 status: 200 OK code: 200 duration: "" @@ -2128,19 +2196,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615/nodes?order_by=created_at_asc&page=1&pool_id=1878dedf-fcd7-4011-bf83-789c8a965df9&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"nodes":[{"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:48.327203Z","error_message":null,"id":"bd3a0b8f-7e8a-4627-944a-756109eee7ea","name":"scw-k8spoolconfigkubeletargs-default-bd3a0b8f7","pool_id":"1878dedf-fcd7-4011-bf83-789c8a965df9","provider_id":"scaleway://instance/fr-par-1/f8a6353d-8c19-4e73-8007-06012fce03e7","public_ip_v4":"51.158.75.229","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:10:09.164383Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "621" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:13 GMT + - Wed, 18 Oct 2023 16:40:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2150,7 +2218,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d77b877-42fd-4b40-b6a8-0079e209077c + - b78920a9-a3b8-498e-b1b9-b2854323ee7c status: 200 OK code: 200 duration: "" @@ -2161,19 +2229,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:06:32.979190Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1475" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:13 GMT + - Wed, 18 Oct 2023 16:40:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2183,7 +2251,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21480cc8-6db4-4fbd-b3dc-b0180b9e0be8 + - a968029e-6c3c-489d-883d-a9b72c81221b status: 200 OK code: 200 duration: "" @@ -2194,19 +2262,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:10:09.178583Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "687" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:13 GMT + - Wed, 18 Oct 2023 16:40:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2216,7 +2284,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 814161ff-04a8-4531-9788-964ed1fc136b + - 2cda6028-6fce-4040-a50f-c91c44657345 status: 200 OK code: 200 duration: "" @@ -2227,19 +2295,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:06:32.979190Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1475" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:13 GMT + - Wed, 18 Oct 2023 16:40:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2249,7 +2317,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d75cad4f-9a65-48eb-997a-95fe5a48c021 + - a47297ac-5670-407d-93b2-ba8ce97cbdbe status: 200 OK code: 200 duration: "" @@ -2260,19 +2328,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWdrdWJlbGV0YXJncyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUlZlazlHYjFoRVZFMTZUVlJCZUU1cVJYZE5SRlY2VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURXBaQ21OSlJWaFBTamRUYWtaNVUwNTBWelJZU25GUGRWSkdWV05OZEVSamJtTkpUbnBqUm1GUE1tWjBlR2RIWld0V1NFMTNOVVpOTWpKQlZuYzRUVlpJZERrS2MwMVJSRmRwTUVFM1RrbHNUblJOTUVsV2RYRm5aV3BwWlUxbWRYVkVOMGR2V25KM01qVkJUSGc0U0hWWmR6Vllaa1JwWW1ORE4wdHFRMUo2ZFdOMmRRcDNlbGhNYldSMFMwWlNhbWgyWjJoTVoxWTRUbXRLU0N0aVVuVXhWbUUzY0RkRE9XWmxjemc1Y0V3elVFOTZUSGhXTVRoUVRIRlpZM2s1YkRoclRrVldDbU53WW1aTU0wSmhjR2x2V25FMlNtRTNTa1ZrUnk5YU1VcDJRMlJUUlU5NVdEbGtVR3hqVUZoTlJVbHFWVFZaVFVGbVZFNWljWGxRTUhrdksxcENZblVLZFhNcldFWllhU3RoT0ZSR09EQmhUa0pPUmpCM1pYVjZPRUpvUlZKSWRFaE5kRWw1VnpVMk9UWlVVMUl5ZDFoU1J5OW5TVlZ0VDBoUksybEtOV3g1VGdwclRHUjVZVGsxTVhwVVZqbDVNak5RVjNRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSU1YZFNMMkZaVVM5SlJuRkZRbkZTZFRZNE5HMHpjRXBSUmtKTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1RtbGFSakJZTDBKNVVYUlVUaXQxWjAxamMwZHdkSFJ1UXpONFl6SmFWWFZFUkdWRE0wMDRSVWM1Vld0RU1sQnpRd293V21Oc01DdG9URGRZWlcxUmVXcHJaMHR3Y2tGcFJqQjFja0o2YXpOWEszTndaamRhVEhFeVV6TmphVXBhU0UwclZrWjNkeXRqTVU1WWVFb3ZaVVJqQ2xCWVRsSmhVMFJtVm5sR09UbDVSVUZvU0V4eFNGbFZhbEpUTUhoeVJHRjNOMjR2VHpGRFNrNWhlUzlKYlZWUE1rSXJkSFk1VUZod00waENPR1ZJYTNRS05DOWtOa1ppZWk5NGVEazBNRFEyUWs5Rk1tWkJWbEJhYjBoNlNGWkJVVmN6YjFkc1FVeFFiVkpqVjJKRFVtNW5RbFpWVG0xVlJGTlRhM0pDU2psT1NncEtRMWhXV0dSSmVHTm9hVTk2TDA0eGFGbG5OV2xFSzA4NFZGaGllVVEwVW14Q1dVNTRVVXRwYW1sWFZrOVRRelIyYzA0elJsTXhiMXBFTlZCQ1owRndDblZrYmpCWU0zVkNiMFJLVVd4cFpFb3dlR1JITkM5S1VVMUpXRWRwVTJVMU1GWTJhd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjk0NTgwMzMtMDgxNy00YjAzLWJjODItZTYyOWYwMDAyNjE1LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4c3Bvb2xjb25maWdrdWJlbGV0YXJncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGczFVNFZTVGRpS05UV3hLV2pFOUpRaWNuM1RGZExsWjlyTEpNRlpwWDl1a0ExTTVtbWdmbnJCaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2686" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:13 GMT + - Wed, 18 Oct 2023 16:40:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2282,7 +2350,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a2d582f-6bf8-4897-8ae0-19406c19d694 + - dde7b966-7a07-4953-ba3a-74fa1da2ed38 status: 200 OK code: 200 duration: "" @@ -2293,19 +2361,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:10:09.178583Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "687" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:13 GMT + - Wed, 18 Oct 2023 16:41:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2315,7 +2383,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65fe3bef-7ec9-4f7b-928a-a8871bf2f499 + - a6c2b6fd-9af0-40fe-9c8b-dbb4ff75292a status: 200 OK code: 200 duration: "" @@ -2326,19 +2394,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615/nodes?order_by=created_at_asc&page=1&pool_id=1878dedf-fcd7-4011-bf83-789c8a965df9&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"nodes":[{"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:48.327203Z","error_message":null,"id":"bd3a0b8f-7e8a-4627-944a-756109eee7ea","name":"scw-k8spoolconfigkubeletargs-default-bd3a0b8f7","pool_id":"1878dedf-fcd7-4011-bf83-789c8a965df9","provider_id":"scaleway://instance/fr-par-1/f8a6353d-8c19-4e73-8007-06012fce03e7","public_ip_v4":"51.158.75.229","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:10:09.164383Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "621" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:13 GMT + - Wed, 18 Oct 2023 16:41:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2348,7 +2416,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99a4689e-0843-4b60-a5f8-00efbd087986 + - 9bc1a6fb-e58f-4ba8-a43f-1715e69faac5 status: 200 OK code: 200 duration: "" @@ -2359,19 +2427,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:06:32.979190Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1475" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:14 GMT + - Wed, 18 Oct 2023 16:41:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2381,7 +2449,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 843c5c12-3ff8-49f5-ae0d-05ed962e0b4d + - a86de990-0d9e-4bb3-bdfd-bf1e3fe877e6 status: 200 OK code: 200 duration: "" @@ -2392,19 +2460,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWdrdWJlbGV0YXJncyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUlZlazlHYjFoRVZFMTZUVlJCZUU1cVJYZE5SRlY2VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURXBaQ21OSlJWaFBTamRUYWtaNVUwNTBWelJZU25GUGRWSkdWV05OZEVSamJtTkpUbnBqUm1GUE1tWjBlR2RIWld0V1NFMTNOVVpOTWpKQlZuYzRUVlpJZERrS2MwMVJSRmRwTUVFM1RrbHNUblJOTUVsV2RYRm5aV3BwWlUxbWRYVkVOMGR2V25KM01qVkJUSGc0U0hWWmR6Vllaa1JwWW1ORE4wdHFRMUo2ZFdOMmRRcDNlbGhNYldSMFMwWlNhbWgyWjJoTVoxWTRUbXRLU0N0aVVuVXhWbUUzY0RkRE9XWmxjemc1Y0V3elVFOTZUSGhXTVRoUVRIRlpZM2s1YkRoclRrVldDbU53WW1aTU0wSmhjR2x2V25FMlNtRTNTa1ZrUnk5YU1VcDJRMlJUUlU5NVdEbGtVR3hqVUZoTlJVbHFWVFZaVFVGbVZFNWljWGxRTUhrdksxcENZblVLZFhNcldFWllhU3RoT0ZSR09EQmhUa0pPUmpCM1pYVjZPRUpvUlZKSWRFaE5kRWw1VnpVMk9UWlVVMUl5ZDFoU1J5OW5TVlZ0VDBoUksybEtOV3g1VGdwclRHUjVZVGsxTVhwVVZqbDVNak5RVjNRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSU1YZFNMMkZaVVM5SlJuRkZRbkZTZFRZNE5HMHpjRXBSUmtKTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1RtbGFSakJZTDBKNVVYUlVUaXQxWjAxamMwZHdkSFJ1UXpONFl6SmFWWFZFUkdWRE0wMDRSVWM1Vld0RU1sQnpRd293V21Oc01DdG9URGRZWlcxUmVXcHJaMHR3Y2tGcFJqQjFja0o2YXpOWEszTndaamRhVEhFeVV6TmphVXBhU0UwclZrWjNkeXRqTVU1WWVFb3ZaVVJqQ2xCWVRsSmhVMFJtVm5sR09UbDVSVUZvU0V4eFNGbFZhbEpUTUhoeVJHRjNOMjR2VHpGRFNrNWhlUzlKYlZWUE1rSXJkSFk1VUZod00waENPR1ZJYTNRS05DOWtOa1ppZWk5NGVEazBNRFEyUWs5Rk1tWkJWbEJhYjBoNlNGWkJVVmN6YjFkc1FVeFFiVkpqVjJKRFVtNW5RbFpWVG0xVlJGTlRhM0pDU2psT1NncEtRMWhXV0dSSmVHTm9hVTk2TDA0eGFGbG5OV2xFSzA4NFZGaGllVVEwVW14Q1dVNTRVVXRwYW1sWFZrOVRRelIyYzA0elJsTXhiMXBFTlZCQ1owRndDblZrYmpCWU0zVkNiMFJLVVd4cFpFb3dlR1JITkM5S1VVMUpXRWRwVTJVMU1GWTJhd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjk0NTgwMzMtMDgxNy00YjAzLWJjODItZTYyOWYwMDAyNjE1LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4c3Bvb2xjb25maWdrdWJlbGV0YXJncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGczFVNFZTVGRpS05UV3hLV2pFOUpRaWNuM1RGZExsWjlyTEpNRlpwWDl1a0ExTTVtbWdmbnJCaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2686" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:14 GMT + - Wed, 18 Oct 2023 16:41:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2414,7 +2482,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 626caa8e-07dd-407b-9793-b5daf6f3b06e + - f6c23206-5526-4499-a50f-6032970b9746 status: 200 OK code: 200 duration: "" @@ -2425,19 +2493,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:10:09.178583Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "687" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:14 GMT + - Wed, 18 Oct 2023 16:41:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2447,7 +2515,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 300ac414-7c4d-44bb-81b8-789a19796108 + - 65d61b40-3c23-4442-ae75-b4ffd530c9c1 status: 200 OK code: 200 duration: "" @@ -2458,19 +2526,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615/nodes?order_by=created_at_asc&page=1&pool_id=1878dedf-fcd7-4011-bf83-789c8a965df9&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"nodes":[{"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:48.327203Z","error_message":null,"id":"bd3a0b8f-7e8a-4627-944a-756109eee7ea","name":"scw-k8spoolconfigkubeletargs-default-bd3a0b8f7","pool_id":"1878dedf-fcd7-4011-bf83-789c8a965df9","provider_id":"scaleway://instance/fr-par-1/f8a6353d-8c19-4e73-8007-06012fce03e7","public_ip_v4":"51.158.75.229","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:10:09.164383Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "621" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:14 GMT + - Wed, 18 Oct 2023 16:41:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2480,32 +2548,96 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23ae53db-3b3d-40a6-a651-80aa6328448f + - 803986ce-4c5b-4da2-8150-c79539dd2eaa status: 200 OK code: 200 duration: "" - request: - body: '{"autoscaling":null,"size":null,"min_size":null,"max_size":null,"autohealing":null,"tags":null,"kubelet_args":{"maxPods":"50"},"upgrade_policy":{"max_unavailable":null,"max_surge":null}}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "704" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:41:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49e6b84d-2d0d-419f-899e-4048ada79e83 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "704" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 16:41:36 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 55ee30fa-99ed-4a11-aeda-c389299104c2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 - method: PATCH + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:10:14.950494018Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:15 GMT + - Wed, 18 Oct 2023 16:41:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2515,7 +2647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 515ba5b1-72a5-4815-b970-8958100036fe + - 47e8bc2a-0705-46e0-a424-ec090235ce7a status: 200 OK code: 200 duration: "" @@ -2526,19 +2658,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:10:14.950494Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "685" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:15 GMT + - Wed, 18 Oct 2023 16:41:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2548,7 +2680,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55efd6b9-a535-4a99-9309-61da6b2f3c9a + - 2bc154c9-4727-4dc9-b5ae-0d9e13c45275 status: 200 OK code: 200 duration: "" @@ -2559,19 +2691,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:10:14.950494Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "685" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:15 GMT + - Wed, 18 Oct 2023 16:41:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2581,7 +2713,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbcb806b-f26b-4cb6-810f-e24e91143ea3 + - ac33b76d-08f1-4ea8-b2c0-92f7adc9cc6a status: 200 OK code: 200 duration: "" @@ -2592,19 +2724,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615/nodes?order_by=created_at_asc&page=1&pool_id=1878dedf-fcd7-4011-bf83-789c8a965df9&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"nodes":[{"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:48.327203Z","error_message":null,"id":"bd3a0b8f-7e8a-4627-944a-756109eee7ea","name":"scw-k8spoolconfigkubeletargs-default-bd3a0b8f7","pool_id":"1878dedf-fcd7-4011-bf83-789c8a965df9","provider_id":"scaleway://instance/fr-par-1/f8a6353d-8c19-4e73-8007-06012fce03e7","public_ip_v4":"51.158.75.229","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:10:09.164383Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "621" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:15 GMT + - Wed, 18 Oct 2023 16:41:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2614,7 +2746,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c00e5b57-fcd1-4769-88f7-51ac237d52d9 + - a8925ec6-b8a0-4f4c-9fe0-310223d09f77 status: 200 OK code: 200 duration: "" @@ -2625,19 +2757,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:06:32.979190Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1475" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:15 GMT + - Wed, 18 Oct 2023 16:42:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2647,7 +2779,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f26cccdd-913c-4744-8bed-aa773d1f9ec7 + - a4cfbd76-0fdd-4d4f-8b05-a05434895296 status: 200 OK code: 200 duration: "" @@ -2658,19 +2790,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:10:14.950494Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "685" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:15 GMT + - Wed, 18 Oct 2023 16:42:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2680,7 +2812,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 310ee47a-b115-42c3-b93e-983335dcb489 + - 624bd7a1-6e52-4e14-b63b-daaf1231b6bd status: 200 OK code: 200 duration: "" @@ -2691,19 +2823,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:06:32.979190Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1475" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:15 GMT + - Wed, 18 Oct 2023 16:42:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2713,7 +2845,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 703f48b7-0a03-48ae-b833-bd51811d29ad + - ae807936-989e-4843-b8a5-3e1f95019c75 status: 200 OK code: 200 duration: "" @@ -2724,19 +2856,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWdrdWJlbGV0YXJncyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUlZlazlHYjFoRVZFMTZUVlJCZUU1cVJYZE5SRlY2VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURXBaQ21OSlJWaFBTamRUYWtaNVUwNTBWelJZU25GUGRWSkdWV05OZEVSamJtTkpUbnBqUm1GUE1tWjBlR2RIWld0V1NFMTNOVVpOTWpKQlZuYzRUVlpJZERrS2MwMVJSRmRwTUVFM1RrbHNUblJOTUVsV2RYRm5aV3BwWlUxbWRYVkVOMGR2V25KM01qVkJUSGc0U0hWWmR6Vllaa1JwWW1ORE4wdHFRMUo2ZFdOMmRRcDNlbGhNYldSMFMwWlNhbWgyWjJoTVoxWTRUbXRLU0N0aVVuVXhWbUUzY0RkRE9XWmxjemc1Y0V3elVFOTZUSGhXTVRoUVRIRlpZM2s1YkRoclRrVldDbU53WW1aTU0wSmhjR2x2V25FMlNtRTNTa1ZrUnk5YU1VcDJRMlJUUlU5NVdEbGtVR3hqVUZoTlJVbHFWVFZaVFVGbVZFNWljWGxRTUhrdksxcENZblVLZFhNcldFWllhU3RoT0ZSR09EQmhUa0pPUmpCM1pYVjZPRUpvUlZKSWRFaE5kRWw1VnpVMk9UWlVVMUl5ZDFoU1J5OW5TVlZ0VDBoUksybEtOV3g1VGdwclRHUjVZVGsxTVhwVVZqbDVNak5RVjNRd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSU1YZFNMMkZaVVM5SlJuRkZRbkZTZFRZNE5HMHpjRXBSUmtKTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1RtbGFSakJZTDBKNVVYUlVUaXQxWjAxamMwZHdkSFJ1UXpONFl6SmFWWFZFUkdWRE0wMDRSVWM1Vld0RU1sQnpRd293V21Oc01DdG9URGRZWlcxUmVXcHJaMHR3Y2tGcFJqQjFja0o2YXpOWEszTndaamRhVEhFeVV6TmphVXBhU0UwclZrWjNkeXRqTVU1WWVFb3ZaVVJqQ2xCWVRsSmhVMFJtVm5sR09UbDVSVUZvU0V4eFNGbFZhbEpUTUhoeVJHRjNOMjR2VHpGRFNrNWhlUzlKYlZWUE1rSXJkSFk1VUZod00waENPR1ZJYTNRS05DOWtOa1ppZWk5NGVEazBNRFEyUWs5Rk1tWkJWbEJhYjBoNlNGWkJVVmN6YjFkc1FVeFFiVkpqVjJKRFVtNW5RbFpWVG0xVlJGTlRhM0pDU2psT1NncEtRMWhXV0dSSmVHTm9hVTk2TDA0eGFGbG5OV2xFSzA4NFZGaGllVVEwVW14Q1dVNTRVVXRwYW1sWFZrOVRRelIyYzA0elJsTXhiMXBFTlZCQ1owRndDblZrYmpCWU0zVkNiMFJLVVd4cFpFb3dlR1JITkM5S1VVMUpXRWRwVTJVMU1GWTJhd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjk0NTgwMzMtMDgxNy00YjAzLWJjODItZTYyOWYwMDAyNjE1LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4c3Bvb2xjb25maWdrdWJlbGV0YXJncwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzcG9vbGNvbmZpZ2t1YmVsZXRhcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGczFVNFZTVGRpS05UV3hLV2pFOUpRaWNuM1RGZExsWjlyTEpNRlpwWDl1a0ExTTVtbWdmbnJCaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2686" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:16 GMT + - Wed, 18 Oct 2023 16:42:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2746,7 +2878,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84aa543e-8846-4d8d-b800-d6a98e129e5a + - fd3e6291-386a-4de7-8385-31a3adcd4994 status: 200 OK code: 200 duration: "" @@ -2757,19 +2889,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:10:14.950494Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "685" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:16 GMT + - Wed, 18 Oct 2023 16:42:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2779,7 +2911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9f737c8-906b-4f66-b4d3-e051c2f0b816 + - 40f79b1f-1ffb-49bf-b34f-943a2fc8af0a status: 200 OK code: 200 duration: "" @@ -2790,19 +2922,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615/nodes?order_by=created_at_asc&page=1&pool_id=1878dedf-fcd7-4011-bf83-789c8a965df9&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"nodes":[{"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:48.327203Z","error_message":null,"id":"bd3a0b8f-7e8a-4627-944a-756109eee7ea","name":"scw-k8spoolconfigkubeletargs-default-bd3a0b8f7","pool_id":"1878dedf-fcd7-4011-bf83-789c8a965df9","provider_id":"scaleway://instance/fr-par-1/f8a6353d-8c19-4e73-8007-06012fce03e7","public_ip_v4":"51.158.75.229","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:10:15.702918Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "651" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:16 GMT + - Wed, 18 Oct 2023 16:42:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2812,7 +2944,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ecc773e-f583-4427-a8b2-f51f28087b23 + - fd9571f9-a291-4e24-b8ce-db9809a5e088 status: 200 OK code: 200 duration: "" @@ -2823,19 +2955,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/1878dedf-fcd7-4011-bf83-789c8a965df9 - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"69458033-0817-4b03-bc82-e629f0002615","container_runtime":"containerd","created_at":"2023-10-17T10:05:43.113087Z","id":"1878dedf-fcd7-4011-bf83-789c8a965df9","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-17T10:10:16.706615506Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "691" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:16 GMT + - Wed, 18 Oct 2023 16:42:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2845,7 +2977,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d42bb8c-fb3f-4fb5-b86a-bb5301417097 + - 77c15440-c3bf-4068-a7eb-140c6564c35e status: 200 OK code: 200 duration: "" @@ -2856,19 +2988,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615?with_additional_resources=true - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:10:16.786740518Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1481" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:16 GMT + - Wed, 18 Oct 2023 16:42:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2878,7 +3010,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e2aa98c-5cac-4d05-b1e6-7c5d98f49f92 + - 12340ca4-0df8-45cb-8dbb-d9e6046258b3 status: 200 OK code: 200 duration: "" @@ -2889,19 +3021,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:10:16.786741Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1478" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:16 GMT + - Wed, 18 Oct 2023 16:42:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2911,7 +3043,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56be0f0e-96f1-4d06-91f9-d60a025bf662 + - d398b290-5948-45bd-a54c-cf29945b68f5 status: 200 OK code: 200 duration: "" @@ -2922,19 +3054,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:10:16.786741Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1478" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:21 GMT + - Wed, 18 Oct 2023 16:42:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2944,7 +3076,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9034381-bd35-40c2-8c44-378dc5aee70c + - e342428d-2746-42c9-afc2-6edfdfd49726 status: 200 OK code: 200 duration: "" @@ -2955,19 +3087,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:10:16.786741Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1478" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:27 GMT + - Wed, 18 Oct 2023 16:42:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2977,7 +3109,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d23dff7-48a3-4bb3-abbd-8ed0d9e59cbd + - f8a8e231-2cfb-42be-bc87-5c74c411e619 status: 200 OK code: 200 duration: "" @@ -2988,19 +3120,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:10:16.786741Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1478" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:32 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3010,7 +3142,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b5a1370-8717-439a-a4e2-0de5ad9a8283 + - b76215bf-ff76-4a71-b09f-0a5b11747ac5 status: 200 OK code: 200 duration: "" @@ -3021,19 +3153,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:10:16.786741Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1478" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:37 GMT + - Wed, 18 Oct 2023 16:43:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3043,7 +3175,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75dba90f-2577-4b68-81f6-9bdf0f7cace2 + - 55360466-0cca-49c1-8c9e-cc4bdaef4497 status: 200 OK code: 200 duration: "" @@ -3054,19 +3186,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:10:16.786741Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1478" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:42 GMT + - Wed, 18 Oct 2023 16:43:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3076,7 +3208,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43fd2808-5059-4927-bbc1-4d6b51d95f13 + - 825a4c79-81f9-4338-9727-d4a56e05ebf2 status: 200 OK code: 200 duration: "" @@ -3087,19 +3219,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69458033-0817-4b03-bc82-e629f0002615.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:05:37.413506Z","created_at":"2023-10-17T10:05:37.413506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69458033-0817-4b03-bc82-e629f0002615.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69458033-0817-4b03-bc82-e629f0002615","ingress":"none","name":"K8SPoolConfigKubeletArgs","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-17T10:10:16.786741Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1478" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:47 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3109,7 +3241,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b728e6b6-3592-4c19-9336-1f5a9fa4a292 + - edc1a225-dd86-46bb-8e4e-cdd3961fc0c1 status: 200 OK code: 200 duration: "" @@ -3120,19 +3252,1341 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"69458033-0817-4b03-bc82-e629f0002615","type":"not_found"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "128" + - "704" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 875f52b3-47ca-412f-95e9-40a645e956ad + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "704" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a60a6a4-fbb5-42fd-a282-be7a6e360ee1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "704" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:27 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78f7661c-aaba-447a-b0e9-063c64451cb3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "704" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e17dca40-9dfc-4ac4-975c-2a340a7fe5a6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:35:50.809901Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "704" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c5370daf-1e3f-49d2-8a3f-37be59dc2e2d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:43:38.328270Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "702" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b212166-5ee6-4df9-b3e9-9cfdf302a89c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:37:11.350616Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1507" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - df197996-5efd-48a7-aef8-5c1ff00ebf43 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:43:38.328270Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "702" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a95e606e-66b0-4d73-895a-5849425f482d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226/nodes?order_by=created_at_asc&page=1&pool_id=146e381b-b865-42f1-8d77-72fe68993ee1&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:38:41.119851Z","error_message":null,"id":"34d13a4f-a42a-4e74-af47-218d67034f76","name":"scw-test-pool-kubelet-test-pool-kubelet-34d13a","pool_id":"146e381b-b865-42f1-8d77-72fe68993ee1","provider_id":"scaleway://instance/fr-par-1/11a29d81-9d44-4626-ad74-61fd9fe0fe6f","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:38.313909Z"}],"total_count":1}' + headers: + Content-Length: + - "659" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb513a9f-5426-41e0-9f94-f56c6b4f28ae + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:37:11.350616Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1507" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 329da46b-ed7c-491c-8453-ac0c5a1b788a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:43:38.328270Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "702" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9242a0ba-23b1-49ee-b843-8943eddbadab + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5af82341-c048-4f53-853a-3df5421d10f9 + method: GET + response: + body: '{"created_at":"2023-10-18T16:35:44.326008Z","dhcp_enabled":true,"id":"5af82341-c048-4f53-853a-3df5421d10f9","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.326008Z","id":"c16fa43b-e195-41c1-a918-26bfcb8118ed","subnet":"172.16.0.0/22","updated_at":"2023-10-18T16:35:44.326008Z"},{"created_at":"2023-10-18T16:35:44.326008Z","id":"1ba012b4-d607-4b55-96f6-9e4f65dd9b4d","subnet":"fd63:256c:45f7:8be8::/64","updated_at":"2023-10-18T16:35:44.326008Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.326008Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "722" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bbaa2abb-ee63-4506-90c3-5819e2d68bae + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:37:11.350616Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1507" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5925d1b-bbaa-435f-beae-6e45021b6f98 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU1c2IxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RteHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEZsRUNpdEtiblpZTDBKeWVrbE9OVU5JT1ZGRWFqTmpNQ3RETlZveFFXVnVXbEo1VWpsR1JrSldja1FyY2xKeFFVTm1kVXR0WlhBNGNUSlpaamRCU2pJeFlpc0tTbTlHY0N0VllYaE5NbVF3YzJoNE0xRnVRazRyVUVKYU9HOWhXVmRhT0VKSGRHOTZWU3RNZFZkbGNVOXhLMHgxT0ZKaWNIbzBSRFJ3Tm5kTFoySkpjUW8wYzBSVVVYUktUR2czVUVsRE1tZEJWMnh0VW5Obk9FeHhlbXhSVWpkTE1ubEtWelpHVUM5emFHSnRiSHBVYUZOSWExRlJPSFZFWkRCVGFqTm5ZeloyQ21GSldtcDNhMDVhZUZSS1QzRjFNRFIxVVV4a05HeEpiME5UTUhOamJuQnhUWEZHTURFNU4xUktPREJOZEdnMlNGVnBObEJVV1dkWmNtazBabXd2T1dRS1NUQTBjV3BJZEVFNGFXZE9iM014VmsxWVdIbzVWbnBIYVRCdlVIcEtNbWh0YUdSVlZVaEtZMlpFVDBVclZDdFlhRzVyY2toNVRFSjBXbGxEUVRabFNRcHhVWEowTlRKdVFUUlhjblZpY2tsTFFVaHJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklWR3hwTWtSVVVYa3hTQzlwTjJkaU5uQmxlVEIxTlZCS1kweE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJjMVZZU0ZseVExRTBjRkZCYzNFek5DdGhURUpNV2tVcmNVTnlkSFl5YjJ0NVZWTktNMHhJVEhOV1pURmFNbkJJYlFwck1qaExiR3hYZG05MkswWlZNV3RJVHpKQ05tUnBLM293VWtvMGVuQXJiV2M1WkZGblNXcHVZVEZuSzJsSU1td3JiRnBMZEdWQ1dYZEpLMmxyVTJwQkNrOXZjRTl1ZGtacVUxWTNWVmtyV0RGRFpuTXdiRzlyVTBoQ1RDdFFjWG80YTJ3NE1HUjRNR1JXVTJGWlIzUXphV1ozTkVkTGIwTkhVVWx5YzJOU1RrMEtiRWRwVXk5b01HaE5URkIzYUc1bWQyVmlOV2MxV0M5d05ERkNVeloyYUROVlZHUm5aMjR2ZFU5RFUzbE5ka1E0VERNd2RYWkVTRFZtVDI1TGVrSlFiQXA2YlROdWVIUjFZME5SZFVKcVlWaGlWMmxVU0hWUFNGbFBNU3M0UjJoa1EzSmtNVlpGUzBWM1R5c3ZWVXR2UzJvNGFEVlFTRFYzZHpadFdYaGxOVEJyQ2tGcWRFNXFabW8xU2s5S2IwbERUVzFDZVVGa1N5c3pXa1ZSZFdOTVQwWm1Sa2xzV1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzRjNmZmNmM4LTViNDctNDY4MS05ZmM2LWRmZjdiMWI3NDIyNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiByV1F1MmNaNWFrVkhSVTFJN3VZYlJvUjFOT0xSMTNZeWt1UnhzcFpZdW5lM0lMeDNVcHNyQ0IxQw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2670" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e39d5cd-e95e-4d44-a3d5-16ae5701c895 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:43:38.328270Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "702" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - da022b1a-8669-4681-a6de-c5d2b54f0263 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226/nodes?order_by=created_at_asc&page=1&pool_id=146e381b-b865-42f1-8d77-72fe68993ee1&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:38:41.119851Z","error_message":null,"id":"34d13a4f-a42a-4e74-af47-218d67034f76","name":"scw-test-pool-kubelet-test-pool-kubelet-34d13a","pool_id":"146e381b-b865-42f1-8d77-72fe68993ee1","provider_id":"scaleway://instance/fr-par-1/11a29d81-9d44-4626-ad74-61fd9fe0fe6f","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:38.313909Z"}],"total_count":1}' + headers: + Content-Length: + - "659" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8829f1fd-5370-45db-8493-144e1cd1fb4e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5af82341-c048-4f53-853a-3df5421d10f9 + method: GET + response: + body: '{"created_at":"2023-10-18T16:35:44.326008Z","dhcp_enabled":true,"id":"5af82341-c048-4f53-853a-3df5421d10f9","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.326008Z","id":"c16fa43b-e195-41c1-a918-26bfcb8118ed","subnet":"172.16.0.0/22","updated_at":"2023-10-18T16:35:44.326008Z"},{"created_at":"2023-10-18T16:35:44.326008Z","id":"1ba012b4-d607-4b55-96f6-9e4f65dd9b4d","subnet":"fd63:256c:45f7:8be8::/64","updated_at":"2023-10-18T16:35:44.326008Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.326008Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "722" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d67df46f-1afc-4b0a-a647-a20cabd1e1d2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:37:11.350616Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1507" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5008f2a1-1ed6-4ab0-a41e-5a037bc5af4b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU1c2IxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RteHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEZsRUNpdEtiblpZTDBKeWVrbE9OVU5JT1ZGRWFqTmpNQ3RETlZveFFXVnVXbEo1VWpsR1JrSldja1FyY2xKeFFVTm1kVXR0WlhBNGNUSlpaamRCU2pJeFlpc0tTbTlHY0N0VllYaE5NbVF3YzJoNE0xRnVRazRyVUVKYU9HOWhXVmRhT0VKSGRHOTZWU3RNZFZkbGNVOXhLMHgxT0ZKaWNIbzBSRFJ3Tm5kTFoySkpjUW8wYzBSVVVYUktUR2czVUVsRE1tZEJWMnh0VW5Obk9FeHhlbXhSVWpkTE1ubEtWelpHVUM5emFHSnRiSHBVYUZOSWExRlJPSFZFWkRCVGFqTm5ZeloyQ21GSldtcDNhMDVhZUZSS1QzRjFNRFIxVVV4a05HeEpiME5UTUhOamJuQnhUWEZHTURFNU4xUktPREJOZEdnMlNGVnBObEJVV1dkWmNtazBabXd2T1dRS1NUQTBjV3BJZEVFNGFXZE9iM014VmsxWVdIbzVWbnBIYVRCdlVIcEtNbWh0YUdSVlZVaEtZMlpFVDBVclZDdFlhRzVyY2toNVRFSjBXbGxEUVRabFNRcHhVWEowTlRKdVFUUlhjblZpY2tsTFFVaHJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklWR3hwTWtSVVVYa3hTQzlwTjJkaU5uQmxlVEIxTlZCS1kweE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJjMVZZU0ZseVExRTBjRkZCYzNFek5DdGhURUpNV2tVcmNVTnlkSFl5YjJ0NVZWTktNMHhJVEhOV1pURmFNbkJJYlFwck1qaExiR3hYZG05MkswWlZNV3RJVHpKQ05tUnBLM293VWtvMGVuQXJiV2M1WkZGblNXcHVZVEZuSzJsSU1td3JiRnBMZEdWQ1dYZEpLMmxyVTJwQkNrOXZjRTl1ZGtacVUxWTNWVmtyV0RGRFpuTXdiRzlyVTBoQ1RDdFFjWG80YTJ3NE1HUjRNR1JXVTJGWlIzUXphV1ozTkVkTGIwTkhVVWx5YzJOU1RrMEtiRWRwVXk5b01HaE5URkIzYUc1bWQyVmlOV2MxV0M5d05ERkNVeloyYUROVlZHUm5aMjR2ZFU5RFUzbE5ka1E0VERNd2RYWkVTRFZtVDI1TGVrSlFiQXA2YlROdWVIUjFZME5SZFVKcVlWaGlWMmxVU0hWUFNGbFBNU3M0UjJoa1EzSmtNVlpGUzBWM1R5c3ZWVXR2UzJvNGFEVlFTRFYzZHpadFdYaGxOVEJyQ2tGcWRFNXFabW8xU2s5S2IwbERUVzFDZVVGa1N5c3pXa1ZSZFdOTVQwWm1Sa2xzV1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzRjNmZmNmM4LTViNDctNDY4MS05ZmM2LWRmZjdiMWI3NDIyNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiByV1F1MmNaNWFrVkhSVTFJN3VZYlJvUjFOT0xSMTNZeWt1UnhzcFpZdW5lM0lMeDNVcHNyQ0IxQw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2670" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b172985-d143-411d-bc7e-09ab42ee8575 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"1337"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:43:38.328270Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "702" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 12fba21d-218d-48cf-b71a-d191d72c0013 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226/nodes?order_by=created_at_asc&page=1&pool_id=146e381b-b865-42f1-8d77-72fe68993ee1&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:38:41.119851Z","error_message":null,"id":"34d13a4f-a42a-4e74-af47-218d67034f76","name":"scw-test-pool-kubelet-test-pool-kubelet-34d13a","pool_id":"146e381b-b865-42f1-8d77-72fe68993ee1","provider_id":"scaleway://instance/fr-par-1/11a29d81-9d44-4626-ad74-61fd9fe0fe6f","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:38.313909Z"}],"total_count":1}' + headers: + Content-Length: + - "659" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d4d3cdb0-1c36-4ca4-9135-94b7e9b2b624 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"autoscaling":null,"size":null,"min_size":null,"max_size":null,"autohealing":null,"tags":null,"kubelet_args":{"maxPods":"50"},"upgrade_policy":{"max_unavailable":null,"max_surge":null}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: PATCH + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:43:44.996062436Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "703" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e3f96761-70ec-4a2f-844b-fada94082d90 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:43:44.996062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "700" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e6f27a2-450e-4134-929e-e1f0389823cc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:43:44.996062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "700" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f44cfbd1-0453-4c28-b5c6-1b752811dfce + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226/nodes?order_by=created_at_asc&page=1&pool_id=146e381b-b865-42f1-8d77-72fe68993ee1&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:38:41.119851Z","error_message":null,"id":"34d13a4f-a42a-4e74-af47-218d67034f76","name":"scw-test-pool-kubelet-test-pool-kubelet-34d13a","pool_id":"146e381b-b865-42f1-8d77-72fe68993ee1","provider_id":"scaleway://instance/fr-par-1/11a29d81-9d44-4626-ad74-61fd9fe0fe6f","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:38.313909Z"}],"total_count":1}' + headers: + Content-Length: + - "659" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cbe5e2db-3d86-4f1a-992a-7d7aa13e74f3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:37:11.350616Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1507" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 20ba7acd-24cf-4a9d-976e-71d4f368ed04 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:43:44.996062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "700" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2e0f41d4-bbca-4374-9066-32971f33cb60 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5af82341-c048-4f53-853a-3df5421d10f9 + method: GET + response: + body: '{"created_at":"2023-10-18T16:35:44.326008Z","dhcp_enabled":true,"id":"5af82341-c048-4f53-853a-3df5421d10f9","name":"test-pool-kubelet-args","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.326008Z","id":"c16fa43b-e195-41c1-a918-26bfcb8118ed","subnet":"172.16.0.0/22","updated_at":"2023-10-18T16:35:44.326008Z"},{"created_at":"2023-10-18T16:35:44.326008Z","id":"1ba012b4-d607-4b55-96f6-9e4f65dd9b4d","subnet":"fd63:256c:45f7:8be8::/64","updated_at":"2023-10-18T16:35:44.326008Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.326008Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "722" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06ef70a6-ee0d-4e54-9b61-c48540ec6a7b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:37:11.350616Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1507" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6130815d-8430-4afb-88d6-ce98a162532a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUWHBWTUU1c2IxaEVWRTE2VFZSQmVFNTZSVEpOZWxVd1RteHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEZsRUNpdEtiblpZTDBKeWVrbE9OVU5JT1ZGRWFqTmpNQ3RETlZveFFXVnVXbEo1VWpsR1JrSldja1FyY2xKeFFVTm1kVXR0WlhBNGNUSlpaamRCU2pJeFlpc0tTbTlHY0N0VllYaE5NbVF3YzJoNE0xRnVRazRyVUVKYU9HOWhXVmRhT0VKSGRHOTZWU3RNZFZkbGNVOXhLMHgxT0ZKaWNIbzBSRFJ3Tm5kTFoySkpjUW8wYzBSVVVYUktUR2czVUVsRE1tZEJWMnh0VW5Obk9FeHhlbXhSVWpkTE1ubEtWelpHVUM5emFHSnRiSHBVYUZOSWExRlJPSFZFWkRCVGFqTm5ZeloyQ21GSldtcDNhMDVhZUZSS1QzRjFNRFIxVVV4a05HeEpiME5UTUhOamJuQnhUWEZHTURFNU4xUktPREJOZEdnMlNGVnBObEJVV1dkWmNtazBabXd2T1dRS1NUQTBjV3BJZEVFNGFXZE9iM014VmsxWVdIbzVWbnBIYVRCdlVIcEtNbWh0YUdSVlZVaEtZMlpFVDBVclZDdFlhRzVyY2toNVRFSjBXbGxEUVRabFNRcHhVWEowTlRKdVFUUlhjblZpY2tsTFFVaHJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklWR3hwTWtSVVVYa3hTQzlwTjJkaU5uQmxlVEIxTlZCS1kweE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJjMVZZU0ZseVExRTBjRkZCYzNFek5DdGhURUpNV2tVcmNVTnlkSFl5YjJ0NVZWTktNMHhJVEhOV1pURmFNbkJJYlFwck1qaExiR3hYZG05MkswWlZNV3RJVHpKQ05tUnBLM293VWtvMGVuQXJiV2M1WkZGblNXcHVZVEZuSzJsSU1td3JiRnBMZEdWQ1dYZEpLMmxyVTJwQkNrOXZjRTl1ZGtacVUxWTNWVmtyV0RGRFpuTXdiRzlyVTBoQ1RDdFFjWG80YTJ3NE1HUjRNR1JXVTJGWlIzUXphV1ozTkVkTGIwTkhVVWx5YzJOU1RrMEtiRWRwVXk5b01HaE5URkIzYUc1bWQyVmlOV2MxV0M5d05ERkNVeloyYUROVlZHUm5aMjR2ZFU5RFUzbE5ka1E0VERNd2RYWkVTRFZtVDI1TGVrSlFiQXA2YlROdWVIUjFZME5SZFVKcVlWaGlWMmxVU0hWUFNGbFBNU3M0UjJoa1EzSmtNVlpGUzBWM1R5c3ZWVXR2UzJvNGFEVlFTRFYzZHpadFdYaGxOVEJyQ2tGcWRFNXFabW8xU2s5S2IwbERUVzFDZVVGa1N5c3pXa1ZSZFdOTVQwWm1Sa2xzV1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzRjNmZmNmM4LTViNDctNDY4MS05ZmM2LWRmZjdiMWI3NDIyNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wta3ViZWxldC1hcmdzCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wta3ViZWxldC1hcmdzIgogICAgdXNlcjogdGVzdC1wb29sLWt1YmVsZXQtYXJncy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1rdWJlbGV0LWFyZ3MKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wta3ViZWxldC1hcmdzLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiByV1F1MmNaNWFrVkhSVTFJN3VZYlJvUjFOT0xSMTNZeWt1UnhzcFpZdW5lM0lMeDNVcHNyQ0IxQw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2670" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0a7befe2-370c-4cde-b789-4c264376b344 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:43:44.996062Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "700" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1bfc22c5-2494-4bbd-8a70-7d87553383e7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226/nodes?order_by=created_at_asc&page=1&pool_id=146e381b-b865-42f1-8d77-72fe68993ee1&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:38:41.119851Z","error_message":null,"id":"34d13a4f-a42a-4e74-af47-218d67034f76","name":"scw-test-pool-kubelet-test-pool-kubelet-34d13a","pool_id":"146e381b-b865-42f1-8d77-72fe68993ee1","provider_id":"scaleway://instance/fr-par-1/11a29d81-9d44-4626-ad74-61fd9fe0fe6f","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:45.710493Z"}],"total_count":1}' + headers: + Content-Length: + - "689" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d32751e6-e7e5-419a-86dd-d3786406cae6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/146e381b-b865-42f1-8d77-72fe68993ee1 + method: DELETE + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","container_runtime":"containerd","created_at":"2023-10-18T16:35:50.800572Z","id":"146e381b-b865-42f1-8d77-72fe68993ee1","kubelet_args":{"maxPods":"50"},"max_size":1,"min_size":1,"name":"test-pool-kubelet-args","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"updated_at":"2023-10-18T16:43:47.033897327Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eeb44f7f-b3fd-4bbd-acd5-88ba2c4be90f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226?with_additional_resources=true + method: DELETE + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:43:47.114846477Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1513" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5e99d210-5b24-452e-906b-e3fd89a98dd5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:43:47.114846Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1510" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7297f17d-f9cc-40de-b111-e07d1f3f25d9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:43:47.114846Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1510" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 350c0d58-1f4d-4ee6-8ecd-c5635dcd32c4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:43:47.114846Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1510" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:57 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a22237a-313a-4966-9a3d-4009bc812928 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:43:47.114846Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1510" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21e03e80-595e-43f4-bf8e-dd7984ba8e7e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.387748Z","created_at":"2023-10-18T16:35:45.387748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4c6ff6c8-5b47-4681-9fc6-dff7b1b74226.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","ingress":"none","name":"test-pool-kubelet-args","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"5af82341-c048-4f53-853a-3df5421d10f9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","kubelet_args"],"type":"kapsule","updated_at":"2023-10-18T16:43:47.114846Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1510" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:07 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c1bf000-34dd-4988-8795-39f6e8809970 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 + method: GET + response: + body: '{"message":"resource is not found","resource":"cluster","resource_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e6986ba-b8ab-4421-a681-673219f3057d + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5af82341-c048-4f53-853a-3df5421d10f9 + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"5af82341-c048-4f53-853a-3df5421d10f9","type":"not_found"}' + headers: + Content-Length: + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:52 GMT + - Wed, 18 Oct 2023 16:44:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3142,7 +4596,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - babacdf9-2b09-4be9-8b35-c302ab7fda63 + - c9aacd63-6129-45f9-9cb0-e6b5870e35f6 status: 404 Not Found code: 404 duration: "" @@ -3153,10 +4607,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69458033-0817-4b03-bc82-e629f0002615 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4c6ff6c8-5b47-4681-9fc6-dff7b1b74226 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"69458033-0817-4b03-bc82-e629f0002615","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"4c6ff6c8-5b47-4681-9fc6-dff7b1b74226","type":"not_found"}' headers: Content-Length: - "128" @@ -3165,7 +4619,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:52 GMT + - Wed, 18 Oct 2023 16:44:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3175,7 +4629,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43551b6f-6e46-4960-abdb-59bd6c599220 + - d14bb519-ea65-4fa5-b26e-b7b24c5d9544 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-pool-placement-group.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-placement-group.cassette.yaml index 0c3a013e24..496eb6b200 100644 --- a/scaleway/testdata/k8s-cluster-pool-placement-group.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-pool-placement-group.cassette.yaml @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:21 GMT + - Thu, 19 Oct 2023 16:36:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5c72fed-f163-4d72-87d7-ab47e745e68d + - a837a7d5-be57-4460-9984-9dda98e2d573 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"pool-placement-group","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"test-pool-placement-group","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: @@ -50,18 +50,18 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: - body: '{"placement_group":{"id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","name":"pool-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "326" + - "331" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:25 GMT + - Thu, 19 Oct 2023 16:36:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7523ca57-21bc-43f3-b0e5-b4f68c08d005 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -71,7 +71,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39003719-5853-4452-8fb3-2e8551f47abe + - 700a5a6c-569f-466d-be37-8c91ec1593a7 status: 201 Created code: 201 duration: "" @@ -82,19 +82,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7523ca57-21bc-43f3-b0e5-b4f68c08d005 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0 method: GET response: - body: '{"placement_group":{"id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","name":"pool-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "326" + - "331" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:25 GMT + - Thu, 19 Oct 2023 16:36:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -104,12 +104,80 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09eefc64-b94f-4d4c-9f06-7c3c41b50f26 + - b83437ec-1d28-4f58-8000-6d6f603b5449 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"placement_group","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-pool-placement-group","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-19T16:36:28.273413Z","dhcp_enabled":true,"id":"9589709f-af0f-49cb-923c-013c1e52a7e9","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:36:28.273413Z","id":"f1cb0c41-9384-4d62-9cd7-6ef07d1830af","subnet":"172.16.12.0/22","updated_at":"2023-10-19T16:36:28.273413Z"},{"created_at":"2023-10-19T16:36:28.273413Z","id":"e465714b-f596-4260-8e5a-1a8bee719b49","subnet":"fd63:256c:45f7:dc6::/64","updated_at":"2023-10-19T16:36:28.273413Z"}],"tags":[],"updated_at":"2023-10-19T16:36:28.273413Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "725" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33f5e4b1-b5c9-496f-9045-586a5a2d7d24 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9589709f-af0f-49cb-923c-013c1e52a7e9 + method: GET + response: + body: '{"created_at":"2023-10-19T16:36:28.273413Z","dhcp_enabled":true,"id":"9589709f-af0f-49cb-923c-013c1e52a7e9","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:36:28.273413Z","id":"f1cb0c41-9384-4d62-9cd7-6ef07d1830af","subnet":"172.16.12.0/22","updated_at":"2023-10-19T16:36:28.273413Z"},{"created_at":"2023-10-19T16:36:28.273413Z","id":"e465714b-f596-4260-8e5a-1a8bee719b49","subnet":"fd63:256c:45f7:dc6::/64","updated_at":"2023-10-19T16:36:28.273413Z"}],"tags":[],"updated_at":"2023-10-19T16:36:28.273413Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "725" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7fdc1ddc-476d-4e2d-8f5b-1224cc210ce5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-placement-group","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9"}' form: {} headers: Content-Type: @@ -120,16 +188,16 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969023835Z","created_at":"2023-10-17T10:00:26.969023835Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:00:26.978235458Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789215Z","created_at":"2023-10-19T16:36:29.542789215Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:36:29.599481327Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1481" + - "1525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:27 GMT + - Thu, 19 Oct 2023 16:36:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -139,7 +207,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab86c574-6305-42d9-9b42-8d29b66e16ec + - 865fb160-23bc-45ea-8b0b-9f8f86ad2d49 status: 200 OK code: 200 duration: "" @@ -150,19 +218,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:00:26.978235Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:36:29.599481Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1472" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:27 GMT + - Thu, 19 Oct 2023 16:36:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -172,7 +240,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dccc64fe-54c5-4b11-a7b9-908bdf75709e + - 76cf7827-42ac-4f5f-b1ad-5a233e921d38 status: 200 OK code: 200 duration: "" @@ -183,19 +251,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.813934Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:36:31.468700Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1477" + - "1521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Thu, 19 Oct 2023 16:36:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -205,7 +273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef711861-b34b-485c-9167-8e5d0582d857 + - 4ad6e648-1175-4877-8e53-b357edeefae9 status: 200 OK code: 200 duration: "" @@ -216,19 +284,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.813934Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:36:31.468700Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1477" + - "1521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Thu, 19 Oct 2023 16:36:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -238,7 +306,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f950e436-183c-4402-ae52-b4f41a2fb301 + - 2bb02554-7d22-43c2-badb-9ec5e745d9a4 status: 200 OK code: 200 duration: "" @@ -249,19 +317,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBsYWNlbWVudC1ncm91cCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUkJlVTlHYjFoRVZFMTZUVlJCZUU1cVJYZE5SRUY1VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUazFoQ2sxdWJGVk1hbTB5TDJoaU1uWk5RMVZ5UVVOcmJqSmFXVTFvZVdjeVUzbFVOekp0ZFVOMWNsazRTVTFpY205cmMyNTRXVTkwVnpsUlptOWxOblpLUVhBS1pUQXpaVWxUV0VGWU5VRmljbUpWVGxNeVlUWXhjMnM1WjJGYWRsZFZRaTlZWVdOeUwzSlNNMVpyWjFRelluWkpZbVJWVm5ZM2JHTnJNbEZvV201dlZnbzVZMHRVWVhwNU9EVXhkamhST0RVd1JXUnFPVkI2YjI0Mk1YZGlkVEJoVHl0WE16WjFVbTAwYVhKTlpYcHBOMVZNVGt4bFdVY3pVVmhUZFRkVEwyNXlDamQzVjFkamF6aFBSbWM1UkhaVVNXOWhaR3cxY0RRNVFXOTFOM0kyUTNCdVFqQkJTazlhTUdscVpGQlpTMGtyYmxWcldrRnVVV1p6UXpWSFVHb3ZPVXNLTjB0TWJEUnViVUZ2VkVSWVVVZG9MekF6U1ZSNWNXeG5XREYwVjNGeVRrMUxTVzFpYUd0R2RsVjBkR3hXYVhGNloyRlpNemhMY1RoR1dFSlllbTFOTkFwc1VWSnJWRTl3TlROb05reHdVVmxsTTFwTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSE5USk5NWHAzU1dFMGEwWlpNVUZYVkdsMk1EazFiMUk1VmpCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ2VFaHRUVm8xZVVoR04ySjNWRmg2VVRCdVkxZHRNMDV2YlZGblJtb3JRemczVjJjMFEwVkxkSGhRUzBOSmNXVlljd281WmpFeE1XWmpOVFF4UkdKaVZXRm5aakptWXpCaU5EbFhZbU5JUmswNFFrTm9VV2hPYUhKU2NuSjBRMlZZZERCV1RURm1kRnBKVFdSMWRWVnhSWHBXQ2tsWFUySkNSVlJtV1cwdmR6ZE9kbTlTU1VSMmNHRXpha2Q0Wldkc2JVcHNNVFpGVm05cGJYcFhLMVZWVTNkNWNUZExSbTl1WkdObmNrUkJVV05VVmxRS1pXTXJiM0p3UjFaV2VVTjNiamgwUW1FM2NUWnljRE13YVVKQ1YzWXZSMkZtWmpOcmMxSlNSSE16ZEU1NGFXNTFPVGd3T0VsRVlVTjNSMVkwWlVKVE1RcGFiMHhJTkVkcmVDOVZaa2h6TlRKS1VsbElLMUpLU0hGU1RIcHpLMVpNU0ROdlVVOXBjaXR0VTNJNGVYZzNkSGhFVW5wV1dVVlFaSFZuTnpBM01Fa3JDamhwYzBGV0x6SnJSSEpHUkRSRlJ6UnRTMGxJWnpZNFFucEhRa1p4UzJwU01saHllZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vN2Y3YjdjYmUtZDI4Ny00ZTVhLThhNjEtODgyYjhiYjNlZTI5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHBsYWNlbWVudC1ncm91cAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAicGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogcGxhY2VtZW50LWdyb3VwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AcGxhY2VtZW50LWdyb3VwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB6bEtIVjEzQkRyVE4wMEVSOVRWWWs1RWowOUl2RXJCREluUldUWFlhZjBIZkhWc1BtUHJxelEyRA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoUFJFVXlUWHBaZWsxV2IxaEVWRTE2VFZSQmVFOUVSVEpOZWxsNlRWWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFhvNENtYzNObTVrY1ZBdlVDOUNaVVJPWTFZNGF6Tk5ORko0Ym5CSE1HVjRkVkpuZEZoRFpGaDBSblZNWkV4a09VdzBNM05IVVVWWE1URTNSVFExYzI5alFrZ0taREZaVVhZeU5UQkJTVlpOYzNJMVRsQXZSMVYzWWtaNmN6Y3hMekV2WTIxWVNuQm1NMnN4U0dKT1MzRnNWMEp6UzNweFZFcGxWRFJGSzNKR1puaFVOQXBVZDJFNWFsUTVkbEp5U1dwRWRFTkVjV3hUTDNZeWFWRjBOMFp2VVhsR2VuTnlNSE5TVjJGSGJXSnJjSEY0WWxJd1EzRkNNV3NyYTFGME4ybFhNVFJsQ25VNFkzQlhTVUpFTlRsa1NXaERORVZDVERoSFFrNWlXbmhLVEVkMEwxVlZkMmhSYld4eU5qWnBTMUo2WW5SMFZYVjRXbVYyYkdOdGFIQjNSVkp2WmpRS2FWWlJNbUphS3pReFpYZEdLMkZoZVZsSFoyUXdiR0UzT1ZGRmNUaDRSazk2ZDNVMFlVZDVWVU5wU2xacmREZzBVRzVrZVhNcmJrbHZMMEZpUTFreFl3cDVkaTkyTlZRNFZVWldkM1J1UTFVelQxcGpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkRUelJDZW5oall6aE5WRFJoY1VoMWVXWlhTRTlaVmpSYVdFNU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJhV0poVkcxdlQyWjFhME5EWjBGdFNtZFhlR1F3Y1dzcmQyMHpaMDVqZFRSaFExaElTMEZNWVZWbGNGRlhOVGhDV0FwQ1pEaFJhbEU0TjBsblZIcFdaRVo1UnpOUFVXZFdNWGxsZDIxbmJrbEVXbG9yUW1aQlNYbDZMMms0TWpkWVVXMW1SSG95WjJVNGJtWk5TMW8xUmxWSENtVTJiMFJITWxsUEszbEhVVVZGUzFoTE1HTllURXB1TmpWU2FVdERPSHBMYVhrd1ZFVjZhM1JxVjJwTWIzcFdaRFJGYkZsWlQyRmtaVXRPWW1GWGVtZ0tkRXN5TjFseWRsZHRjbVJsU2tSalJ5OUJZMVp0VjJWbFYzQkNUM1pLTjAxQ1MzcGlNMGcxVkc4clUzRnVRbkEyWVRVNFlTOWtiMGd2T0VodlVuVlFWZ3BpV0U1bU1VUTBiRUpDV0dadlUwVkNNVUpwTVdSbVJ6QnBNRVlyYnpOb2FXRkNSVkJCYVd0SlRqWTBMM1l4TkVzdmFVMHlWbGxIZWk5aWFURk5jVGRoQ2k4eE1rZFJaMVZWWkRGblZVcDRjMnhIZHpCTmIxSm5SbTFJWlZseEwxZDZhMHd3Y2dvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Y3NTQwZmRiLTQxMGQtNGQ3ZC04MTM3LWJiNmRiYTM2ZjFjNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBMkIycjdDNm1kZFp4cEdUcXRPSFA5R0d5dE55WVJBYW9UdENXYTBNeVY4YTdhTU5MQmZocFcwQw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2614" + - "2694" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Thu, 19 Oct 2023 16:36:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -271,7 +339,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fd283ca-7127-4f48-92d9-3ee6a9f99720 + - daae1845-5a0f-477b-8dbd-4f2c576d94f8 status: 200 OK code: 200 duration: "" @@ -282,19 +350,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.813934Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:36:31.468700Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1477" + - "1521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Thu, 19 Oct 2023 16:36:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -304,12 +372,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a81c90d8-4187-48c6-9efc-368b963ed62b + - 9b3b844e-7a6a-4d57-b644-52df471593bf status: 200 OK code: 200 duration: "" - request: - body: '{"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + body: '{"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' form: {} headers: Content-Type: @@ -317,19 +385,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29/pools + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7/pools method: POST response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354434Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "664" + - "674" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Thu, 19 Oct 2023 16:36:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -339,7 +407,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62082a97-7ebc-4eb0-936f-a94f00ea2b7b + - a1ed3131-8c96-4815-84e6-efc9f142e8c4 status: 200 OK code: 200 duration: "" @@ -350,19 +418,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Thu, 19 Oct 2023 16:36:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -372,7 +440,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 076131b7-081c-4cbc-9ade-cd1f577740e6 + - 6525be89-a4c1-4be0-88f8-a56717f9f3c3 status: 200 OK code: 200 duration: "" @@ -383,19 +451,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:37 GMT + - Thu, 19 Oct 2023 16:36:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -405,7 +473,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0821e3e8-da56-43ef-a733-c174d9167b3c + - 5eb6e457-70dd-4473-aec0-308562b2e322 status: 200 OK code: 200 duration: "" @@ -416,19 +484,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:43 GMT + - Thu, 19 Oct 2023 16:36:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -438,7 +506,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0f57e60-8cb6-40aa-bff9-489f597be406 + - 3d7d0bf5-23d3-46c2-a1d0-c4abb630292d status: 200 OK code: 200 duration: "" @@ -449,19 +517,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:48 GMT + - Thu, 19 Oct 2023 16:36:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -471,7 +539,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92098f2b-224b-40a7-9d36-425e4c6a3915 + - 356d578e-de9e-48b2-8e78-70631b60e0d2 status: 200 OK code: 200 duration: "" @@ -482,19 +550,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:53 GMT + - Thu, 19 Oct 2023 16:36:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -504,7 +572,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 322d76bc-a440-4f82-87c6-c7685859a545 + - 6e677cf2-c009-4e5f-a837-c3656833de2a status: 200 OK code: 200 duration: "" @@ -515,19 +583,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:59 GMT + - Thu, 19 Oct 2023 16:37:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -537,7 +605,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c18b1c26-a31e-45d8-a0d4-fb8639e6d8a3 + - 74478b1f-5fb6-441f-b36a-bd2937759ea2 status: 200 OK code: 200 duration: "" @@ -548,19 +616,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:04 GMT + - Thu, 19 Oct 2023 16:37:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -570,7 +638,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27915a38-3b66-4108-84cc-47483365f276 + - cea2f601-2c21-4d12-a8eb-be536dcb5615 status: 200 OK code: 200 duration: "" @@ -581,19 +649,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:10 GMT + - Thu, 19 Oct 2023 16:37:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -603,7 +671,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62cdc00e-ac9f-40d6-8f92-a4af4773f91a + - 7fe9fbb7-704b-4929-8829-7434c9251d02 status: 200 OK code: 200 duration: "" @@ -614,19 +682,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:15 GMT + - Thu, 19 Oct 2023 16:37:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -636,7 +704,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36d4855d-7d36-4dbf-9546-ce1b2cbd1bcb + - c2ef7f81-34ed-4383-90a1-990884fa0283 status: 200 OK code: 200 duration: "" @@ -647,19 +715,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:20 GMT + - Thu, 19 Oct 2023 16:37:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -669,7 +737,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6eae1b1-acb3-4036-beb3-89a05ddf5d16 + - aa67daa8-ec4d-4272-a521-b6b94bea5f8b status: 200 OK code: 200 duration: "" @@ -680,19 +748,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:25 GMT + - Thu, 19 Oct 2023 16:37:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +770,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79e071fc-ffd3-42a6-824d-1c17d2100480 + - 5a9fd33a-994b-4cae-916c-6982e4d29ce8 status: 200 OK code: 200 duration: "" @@ -713,19 +781,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:30 GMT + - Thu, 19 Oct 2023 16:37:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +803,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a82caac-b0ae-406d-8e08-f41eabc3d845 + - 8060dc8d-558d-4483-9039-28fa98c91772 status: 200 OK code: 200 duration: "" @@ -746,19 +814,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:35 GMT + - Thu, 19 Oct 2023 16:37:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -768,7 +836,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cebec44c-9e5a-4a91-ad27-3dd12bce0685 + - f24aaac6-9f64-43ca-b88c-0a0828df9162 status: 200 OK code: 200 duration: "" @@ -779,19 +847,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:40 GMT + - Thu, 19 Oct 2023 16:37:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -801,7 +869,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1228b089-9efc-4fb1-8887-568696b79f98 + - 3f1e8982-5789-4e23-b72b-e4d924897a0d status: 200 OK code: 200 duration: "" @@ -812,19 +880,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:46 GMT + - Thu, 19 Oct 2023 16:37:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +902,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63f91cb0-0ed0-490c-96c8-f3ffb75f7458 + - 568e3bab-142f-44c0-b3ba-19fbb570e298 status: 200 OK code: 200 duration: "" @@ -845,19 +913,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:51 GMT + - Thu, 19 Oct 2023 16:37:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,7 +935,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1201abdd-76af-4cca-ae6c-937f85062591 + - 003d7ccf-8644-4dfd-98ce-57000b8cb122 status: 200 OK code: 200 duration: "" @@ -878,19 +946,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:56 GMT + - Thu, 19 Oct 2023 16:37:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -900,7 +968,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f51aa35a-d9dc-4957-b45b-79b580eb6fa9 + - a7d8ea78-bb87-4b9f-917b-e02993f344a8 status: 200 OK code: 200 duration: "" @@ -911,19 +979,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:01 GMT + - Thu, 19 Oct 2023 16:38:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +1001,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48058896-ff15-4604-8fcc-6d100b0a7b72 + - 7d58762e-5f2e-4b85-a115-bb22521cd404 status: 200 OK code: 200 duration: "" @@ -944,19 +1012,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:06 GMT + - Thu, 19 Oct 2023 16:38:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +1034,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 164b380a-c740-4102-bf3e-143bc40e6acd + - 969ceee3-bfb5-47a9-a2d8-80806e9f656e status: 200 OK code: 200 duration: "" @@ -977,19 +1045,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:11 GMT + - Thu, 19 Oct 2023 16:38:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -999,7 +1067,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36be93a3-7d89-4c96-a10b-69d94b5b0b2d + - 8d1d29e2-5837-40b1-ad9c-4b5485c67927 status: 200 OK code: 200 duration: "" @@ -1010,19 +1078,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:16 GMT + - Thu, 19 Oct 2023 16:38:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +1100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b26691e-451b-447b-918a-828360df1cf9 + - d19ed4b2-7131-4ec2-8c8f-d0facd0c8342 status: 200 OK code: 200 duration: "" @@ -1043,19 +1111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:21 GMT + - Thu, 19 Oct 2023 16:38:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1065,7 +1133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba928e65-37d6-4033-9415-524c926502ee + - 1f076106-c052-4144-a288-92fe879f576d status: 200 OK code: 200 duration: "" @@ -1076,19 +1144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:26 GMT + - Thu, 19 Oct 2023 16:38:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1098,7 +1166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5066714-0ebe-4055-b37e-7da6d13be602 + - a3c5360e-e5f0-496e-bdcd-0cffa16caab9 status: 200 OK code: 200 duration: "" @@ -1109,19 +1177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:31 GMT + - Thu, 19 Oct 2023 16:38:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1131,7 +1199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1816bd0-ba07-4040-9dc1-4c2a33935fc3 + - c403618a-e22d-483d-82dc-01892e2ce1f1 status: 200 OK code: 200 duration: "" @@ -1142,19 +1210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:36 GMT + - Thu, 19 Oct 2023 16:38:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1164,7 +1232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a7510af-0f40-4722-80c8-7bc12ded3081 + - 07469740-ccc3-41ec-9fe1-b826bd1dd104 status: 200 OK code: 200 duration: "" @@ -1175,19 +1243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:41 GMT + - Thu, 19 Oct 2023 16:38:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1197,7 +1265,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92063869-a463-4c71-a1ec-253f3ed23936 + - e3f551eb-aef7-4e91-8d58-4dc6499c5e10 status: 200 OK code: 200 duration: "" @@ -1208,19 +1276,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:46 GMT + - Thu, 19 Oct 2023 16:38:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1230,7 +1298,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ab359d6-e751-446c-b1ed-bd055d8078c2 + - b8ec7fbf-428b-4d90-8563-d215eb9581c7 status: 200 OK code: 200 duration: "" @@ -1241,19 +1309,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:51 GMT + - Thu, 19 Oct 2023 16:38:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1263,7 +1331,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5c89ed4-4575-4128-ae08-81b8069e7114 + - d6caa248-b44c-41f2-85ec-da45be072d68 status: 200 OK code: 200 duration: "" @@ -1274,19 +1342,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:56 GMT + - Thu, 19 Oct 2023 16:38:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1296,7 +1364,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f699a37e-95a0-40d6-b701-4748eb8aec2b + - 656e19d9-0ffd-4b1a-b207-a6780bf1359e status: 200 OK code: 200 duration: "" @@ -1307,19 +1375,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:01 GMT + - Thu, 19 Oct 2023 16:39:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1329,7 +1397,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e48da0d0-50ce-400d-86cc-6cac4d0e5590 + - a9998200-7d63-49c6-bd7d-7a79c17b643c status: 200 OK code: 200 duration: "" @@ -1340,19 +1408,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:07 GMT + - Thu, 19 Oct 2023 16:39:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1362,7 +1430,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efd7eda4-ec4e-4f09-8c7e-85b9a0c09a86 + - 599e653a-d144-49e3-be8d-b398535af156 status: 200 OK code: 200 duration: "" @@ -1373,19 +1441,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:12 GMT + - Thu, 19 Oct 2023 16:39:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1395,7 +1463,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3db0991b-fbe8-469e-8815-3fd27a677402 + - 55e3f330-242d-4ab4-9d94-f9c4b8549c0e status: 200 OK code: 200 duration: "" @@ -1406,19 +1474,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:17 GMT + - Thu, 19 Oct 2023 16:39:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1428,7 +1496,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0294167-becc-4ea1-90a9-5d20000787cb + - 2f2075b9-99ed-4f8a-819d-c644675fc0df status: 200 OK code: 200 duration: "" @@ -1439,19 +1507,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:22 GMT + - Thu, 19 Oct 2023 16:39:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1461,7 +1529,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4d2c8ed-3f07-4bff-ad4c-a6c8584a7bc0 + - 15519ae5-5b3f-4d7e-88d7-e41bc4ba8590 status: 200 OK code: 200 duration: "" @@ -1472,19 +1540,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:27 GMT + - Thu, 19 Oct 2023 16:39:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1494,7 +1562,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9308b70-8378-45d2-843f-d94bff7eb9ae + - d7956f95-6c21-435e-a123-a670ead4b835 status: 200 OK code: 200 duration: "" @@ -1505,19 +1573,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:33 GMT + - Thu, 19 Oct 2023 16:39:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1527,7 +1595,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdccc8fb-0da5-4a05-9d41-0685264339ac + - 22ccded4-7b75-4b11-8c9f-dc2256c220f2 status: 200 OK code: 200 duration: "" @@ -1538,19 +1606,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:38 GMT + - Thu, 19 Oct 2023 16:39:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1560,7 +1628,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5546c01d-126c-456f-9b0f-6380cc3e806c + - 800cdca6-d956-4938-bf79-6c4f3baf4baa status: 200 OK code: 200 duration: "" @@ -1571,19 +1639,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:43 GMT + - Thu, 19 Oct 2023 16:39:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1593,7 +1661,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86be0000-1c9b-4868-bd69-b2366c735827 + - 8c65e969-5345-4577-bb53-95b2f78caa39 status: 200 OK code: 200 duration: "" @@ -1604,19 +1672,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:48 GMT + - Thu, 19 Oct 2023 16:39:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1626,7 +1694,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d629a5bb-33b5-4bf6-bbdc-60cc8794afd1 + - bf675666-57a2-42a6-8726-1cff2bfc05c6 status: 200 OK code: 200 duration: "" @@ -1637,19 +1705,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:53 GMT + - Thu, 19 Oct 2023 16:39:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1659,7 +1727,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74c476f3-5391-4610-ae3c-489399f32dd9 + - 2b6c1687-e5e1-4b18-856f-b8aa3617f5b0 status: 200 OK code: 200 duration: "" @@ -1670,19 +1738,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:58 GMT + - Thu, 19 Oct 2023 16:39:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1692,7 +1760,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7df16bb-f7b3-4469-9e56-dc345eb67324 + - 659bff71-2068-4bf6-a9e3-060a9a6a3231 status: 200 OK code: 200 duration: "" @@ -1703,19 +1771,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:03 GMT + - Thu, 19 Oct 2023 16:40:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1725,7 +1793,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00cff165-0481-4a81-a7b9-af6dffdf3068 + - 5d9cc158-caca-488f-bffa-400e3848e315 status: 200 OK code: 200 duration: "" @@ -1736,19 +1804,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:08 GMT + - Thu, 19 Oct 2023 16:40:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1758,7 +1826,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14d28060-075b-4fd3-b461-d325ff29213c + - 228349fb-c39b-4587-9f4a-efbea5241134 status: 200 OK code: 200 duration: "" @@ -1769,19 +1837,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:13 GMT + - Thu, 19 Oct 2023 16:40:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1791,7 +1859,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae92b527-5155-42ea-b863-f7a79dd94d46 + - cab58758-00b2-4fd0-85d3-3555b1fc7821 status: 200 OK code: 200 duration: "" @@ -1802,19 +1870,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:18 GMT + - Thu, 19 Oct 2023 16:40:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1824,7 +1892,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ef33772-85d2-400f-aece-bb1dd50febb9 + - 54be13ab-be26-4ea7-b63f-bc1ebc76e1bb status: 200 OK code: 200 duration: "" @@ -1835,19 +1903,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:23 GMT + - Thu, 19 Oct 2023 16:40:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1857,7 +1925,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50b64f02-ad69-4be3-a8b7-d6e7bc17985e + - 77191c6b-72b0-48ee-a23a-397f37c754fb status: 200 OK code: 200 duration: "" @@ -1868,19 +1936,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:28 GMT + - Thu, 19 Oct 2023 16:40:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1890,7 +1958,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f00022b-3ce7-4a6d-bef5-b8ded401e390 + - f433af7b-0616-4ac1-9116-a9a73c841cca status: 200 OK code: 200 duration: "" @@ -1901,19 +1969,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:33 GMT + - Thu, 19 Oct 2023 16:40:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1923,7 +1991,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74bc994a-3b3c-4b1e-a9dd-7da6e5292614 + - fb55fd2e-884d-41ba-9b03-1bf891b0e259 status: 200 OK code: 200 duration: "" @@ -1934,19 +2002,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:39 GMT + - Thu, 19 Oct 2023 16:40:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1956,7 +2024,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 183ea703-8dc8-4004-81fe-3f51cd214bd7 + - f35c48d5-2e20-42f7-adad-c585b4fdcd87 status: 200 OK code: 200 duration: "" @@ -1967,19 +2035,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:44 GMT + - Thu, 19 Oct 2023 16:40:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1989,7 +2057,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8608bd1e-ab89-46ca-b703-d289914ebb8d + - 455b4568-d1f0-4c5f-a98a-79190ae8c10b status: 200 OK code: 200 duration: "" @@ -2000,19 +2068,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:49 GMT + - Thu, 19 Oct 2023 16:40:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2022,7 +2090,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60dc4965-c58f-450b-b642-266d52e72d1c + - ec2db07d-67fd-4678-a995-cf0bad73bf28 status: 200 OK code: 200 duration: "" @@ -2033,19 +2101,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:54 GMT + - Thu, 19 Oct 2023 16:40:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2055,7 +2123,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fed95504-b3f2-40c8-bb90-b7adc66dc894 + - 71baee09-cb95-4c48-8812-a3c8a43fc62e status: 200 OK code: 200 duration: "" @@ -2066,19 +2134,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:59 GMT + - Thu, 19 Oct 2023 16:40:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2088,7 +2156,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87f79575-42fb-4d9d-9577-d4e624ff566d + - 9ba46165-81ed-48b5-9884-1a4d1e8860aa status: 200 OK code: 200 duration: "" @@ -2099,19 +2167,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.558354Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:04 GMT + - Thu, 19 Oct 2023 16:41:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2121,7 +2189,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7ea656d-f0af-4a48-b854-0d21f4eeeba0 + - e6073c6a-5bf0-4570-a208-0785f0e7388a status: 200 OK code: 200 duration: "" @@ -2132,19 +2200,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:05:05.670561Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "659" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:09 GMT + - Thu, 19 Oct 2023 16:41:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2154,7 +2222,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a4025e9-b72f-477d-a6df-463966acfe0d + - d69291e6-146c-4b2e-b990-4b428d824fa7 status: 200 OK code: 200 duration: "" @@ -2165,19 +2233,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:01:45.571394Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1469" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:09 GMT + - Thu, 19 Oct 2023 16:41:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2187,7 +2255,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3030c52-bf0d-4aab-b588-19d49e8b0490 + - 537e2bac-1da6-4b6c-b51c-02b4a08d0913 status: 200 OK code: 200 duration: "" @@ -2198,19 +2266,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:05:05.670561Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "659" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:09 GMT + - Thu, 19 Oct 2023 16:41:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2220,7 +2288,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a80b5f7-9477-4a62-ac2a-8ddab0a7a666 + - 8556f59a-ab2f-49ec-961f-0a6c37e4617a status: 200 OK code: 200 duration: "" @@ -2231,19 +2299,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29/nodes?order_by=created_at_asc&page=1&pool_id=13e3e2f7-66a3-4ef8-8001-3d619685f9f5&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"nodes":[{"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:18.176755Z","error_message":null,"id":"b1588322-7852-4f60-8fa6-4275bfa93d96","name":"scw-placement-group-placement-group-b158832278","pool_id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","provider_id":"scaleway://instance/fr-par-1/0e2461d8-fb22-4e81-876a-406786466ca2","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:05.658762Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "621" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:09 GMT + - Thu, 19 Oct 2023 16:41:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2253,7 +2321,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f128e00f-c430-4122-b92d-0b33717a4ff2 + - 13c46412-ebb3-4a7c-8163-595e167746e4 status: 200 OK code: 200 duration: "" @@ -2264,19 +2332,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:01:45.571394Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1469" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:09 GMT + - Thu, 19 Oct 2023 16:41:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2286,7 +2354,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0c68e2c-310b-461a-b522-b0b3c576ec8d + - 158e1fe3-4beb-4553-9163-7af0ca203807 status: 200 OK code: 200 duration: "" @@ -2297,19 +2365,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:05:05.670561Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "659" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:09 GMT + - Thu, 19 Oct 2023 16:41:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2319,7 +2387,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0eee8e57-e698-48ba-b063-d563cb7afcf7 + - 61c5be82-0be1-4cdc-bfce-6766876f1293 status: 200 OK code: 200 duration: "" @@ -2330,19 +2398,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:01:45.571394Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1469" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:10 GMT + - Thu, 19 Oct 2023 16:41:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2352,7 +2420,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a637b0ff-ce8b-4aee-988c-6169d5074cb6 + - 09ab1549-8c70-4000-b258-fe63a6da8a8a status: 200 OK code: 200 duration: "" @@ -2363,19 +2431,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7523ca57-21bc-43f3-b0e5-b4f68c08d005 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"placement_group":{"id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","name":"pool-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "326" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:10 GMT + - Thu, 19 Oct 2023 16:41:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2385,7 +2453,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd10f966-ed7e-42bb-bcad-7943f2b8b8ef + - 40fd35c8-27c9-4a8e-a209-330bcd60ddfc status: 200 OK code: 200 duration: "" @@ -2396,19 +2464,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBsYWNlbWVudC1ncm91cCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUkJlVTlHYjFoRVZFMTZUVlJCZUU1cVJYZE5SRUY1VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUazFoQ2sxdWJGVk1hbTB5TDJoaU1uWk5RMVZ5UVVOcmJqSmFXVTFvZVdjeVUzbFVOekp0ZFVOMWNsazRTVTFpY205cmMyNTRXVTkwVnpsUlptOWxOblpLUVhBS1pUQXpaVWxUV0VGWU5VRmljbUpWVGxNeVlUWXhjMnM1WjJGYWRsZFZRaTlZWVdOeUwzSlNNMVpyWjFRelluWkpZbVJWVm5ZM2JHTnJNbEZvV201dlZnbzVZMHRVWVhwNU9EVXhkamhST0RVd1JXUnFPVkI2YjI0Mk1YZGlkVEJoVHl0WE16WjFVbTAwYVhKTlpYcHBOMVZNVGt4bFdVY3pVVmhUZFRkVEwyNXlDamQzVjFkamF6aFBSbWM1UkhaVVNXOWhaR3cxY0RRNVFXOTFOM0kyUTNCdVFqQkJTazlhTUdscVpGQlpTMGtyYmxWcldrRnVVV1p6UXpWSFVHb3ZPVXNLTjB0TWJEUnViVUZ2VkVSWVVVZG9MekF6U1ZSNWNXeG5XREYwVjNGeVRrMUxTVzFpYUd0R2RsVjBkR3hXYVhGNloyRlpNemhMY1RoR1dFSlllbTFOTkFwc1VWSnJWRTl3TlROb05reHdVVmxsTTFwTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSE5USk5NWHAzU1dFMGEwWlpNVUZYVkdsMk1EazFiMUk1VmpCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ2VFaHRUVm8xZVVoR04ySjNWRmg2VVRCdVkxZHRNMDV2YlZGblJtb3JRemczVjJjMFEwVkxkSGhRUzBOSmNXVlljd281WmpFeE1XWmpOVFF4UkdKaVZXRm5aakptWXpCaU5EbFhZbU5JUmswNFFrTm9VV2hPYUhKU2NuSjBRMlZZZERCV1RURm1kRnBKVFdSMWRWVnhSWHBXQ2tsWFUySkNSVlJtV1cwdmR6ZE9kbTlTU1VSMmNHRXpha2Q0Wldkc2JVcHNNVFpGVm05cGJYcFhLMVZWVTNkNWNUZExSbTl1WkdObmNrUkJVV05VVmxRS1pXTXJiM0p3UjFaV2VVTjNiamgwUW1FM2NUWnljRE13YVVKQ1YzWXZSMkZtWmpOcmMxSlNSSE16ZEU1NGFXNTFPVGd3T0VsRVlVTjNSMVkwWlVKVE1RcGFiMHhJTkVkcmVDOVZaa2h6TlRKS1VsbElLMUpLU0hGU1RIcHpLMVpNU0ROdlVVOXBjaXR0VTNJNGVYZzNkSGhFVW5wV1dVVlFaSFZuTnpBM01Fa3JDamhwYzBGV0x6SnJSSEpHUkRSRlJ6UnRTMGxJWnpZNFFucEhRa1p4UzJwU01saHllZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vN2Y3YjdjYmUtZDI4Ny00ZTVhLThhNjEtODgyYjhiYjNlZTI5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHBsYWNlbWVudC1ncm91cAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAicGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogcGxhY2VtZW50LWdyb3VwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AcGxhY2VtZW50LWdyb3VwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB6bEtIVjEzQkRyVE4wMEVSOVRWWWs1RWowOUl2RXJCREluUldUWFlhZjBIZkhWc1BtUHJxelEyRA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2614" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:10 GMT + - Thu, 19 Oct 2023 16:41:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2418,7 +2486,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bd16a66-d2f1-4ed5-9db5-3c4ad0ed9697 + - 8f161559-13f0-48ec-a095-d7c38abddfa8 status: 200 OK code: 200 duration: "" @@ -2429,19 +2497,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:05:05.670561Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "659" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:10 GMT + - Thu, 19 Oct 2023 16:41:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2451,7 +2519,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33138c65-25eb-4f3e-898d-28fbc9c28b3a + - 64e8ae33-44b9-4555-a463-1317b7a81a7d status: 200 OK code: 200 duration: "" @@ -2462,19 +2530,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29/nodes?order_by=created_at_asc&page=1&pool_id=13e3e2f7-66a3-4ef8-8001-3d619685f9f5&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"nodes":[{"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:18.176755Z","error_message":null,"id":"b1588322-7852-4f60-8fa6-4275bfa93d96","name":"scw-placement-group-placement-group-b158832278","pool_id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","provider_id":"scaleway://instance/fr-par-1/0e2461d8-fb22-4e81-876a-406786466ca2","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:05.658762Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "621" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:10 GMT + - Thu, 19 Oct 2023 16:41:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2484,7 +2552,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba3e52ad-4e19-446b-ace0-c43da25fe8d3 + - 64aa5093-6cad-493a-afdb-06ffc1dc8749 status: 200 OK code: 200 duration: "" @@ -2495,19 +2563,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:01:45.571394Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1469" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:10 GMT + - Thu, 19 Oct 2023 16:42:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2517,7 +2585,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91048b84-ede0-4bcd-8b4c-71649b2052c8 + - f917c58b-e6f4-4916-ac4e-2b84223d6ce7 status: 200 OK code: 200 duration: "" @@ -2528,19 +2596,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:05:05.670561Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "659" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:10 GMT + - Thu, 19 Oct 2023 16:42:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2550,7 +2618,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d50ca4f0-0d42-412e-948c-80f312b55010 + - a2caae47-668b-423f-87a5-6bc158dec305 status: 200 OK code: 200 duration: "" @@ -2561,19 +2629,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7523ca57-21bc-43f3-b0e5-b4f68c08d005 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"placement_group":{"id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","name":"pool-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "326" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:10 GMT + - Thu, 19 Oct 2023 16:42:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2583,7 +2651,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b927b3f5-a820-4c4f-b4de-5a4eefe2d3b5 + - 240087b2-745a-4712-9575-61e9abf5b23a status: 200 OK code: 200 duration: "" @@ -2594,19 +2662,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29/nodes?order_by=created_at_asc&page=1&pool_id=13e3e2f7-66a3-4ef8-8001-3d619685f9f5&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"nodes":[{"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:18.176755Z","error_message":null,"id":"b1588322-7852-4f60-8fa6-4275bfa93d96","name":"scw-placement-group-placement-group-b158832278","pool_id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","provider_id":"scaleway://instance/fr-par-1/0e2461d8-fb22-4e81-876a-406786466ca2","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:05.658762Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "621" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:10 GMT + - Thu, 19 Oct 2023 16:42:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2616,7 +2684,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0066a4c-873e-4f31-944d-d282b3d431cf + - 5a6fd229-c524-4491-a349-fc9dbb1a4630 status: 200 OK code: 200 duration: "" @@ -2627,19 +2695,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBsYWNlbWVudC1ncm91cCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUkJlVTlHYjFoRVZFMTZUVlJCZUU1cVJYZE5SRUY1VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUazFoQ2sxdWJGVk1hbTB5TDJoaU1uWk5RMVZ5UVVOcmJqSmFXVTFvZVdjeVUzbFVOekp0ZFVOMWNsazRTVTFpY205cmMyNTRXVTkwVnpsUlptOWxOblpLUVhBS1pUQXpaVWxUV0VGWU5VRmljbUpWVGxNeVlUWXhjMnM1WjJGYWRsZFZRaTlZWVdOeUwzSlNNMVpyWjFRelluWkpZbVJWVm5ZM2JHTnJNbEZvV201dlZnbzVZMHRVWVhwNU9EVXhkamhST0RVd1JXUnFPVkI2YjI0Mk1YZGlkVEJoVHl0WE16WjFVbTAwYVhKTlpYcHBOMVZNVGt4bFdVY3pVVmhUZFRkVEwyNXlDamQzVjFkamF6aFBSbWM1UkhaVVNXOWhaR3cxY0RRNVFXOTFOM0kyUTNCdVFqQkJTazlhTUdscVpGQlpTMGtyYmxWcldrRnVVV1p6UXpWSFVHb3ZPVXNLTjB0TWJEUnViVUZ2VkVSWVVVZG9MekF6U1ZSNWNXeG5XREYwVjNGeVRrMUxTVzFpYUd0R2RsVjBkR3hXYVhGNloyRlpNemhMY1RoR1dFSlllbTFOTkFwc1VWSnJWRTl3TlROb05reHdVVmxsTTFwTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSE5USk5NWHAzU1dFMGEwWlpNVUZYVkdsMk1EazFiMUk1VmpCTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ2VFaHRUVm8xZVVoR04ySjNWRmg2VVRCdVkxZHRNMDV2YlZGblJtb3JRemczVjJjMFEwVkxkSGhRUzBOSmNXVlljd281WmpFeE1XWmpOVFF4UkdKaVZXRm5aakptWXpCaU5EbFhZbU5JUmswNFFrTm9VV2hPYUhKU2NuSjBRMlZZZERCV1RURm1kRnBKVFdSMWRWVnhSWHBXQ2tsWFUySkNSVlJtV1cwdmR6ZE9kbTlTU1VSMmNHRXpha2Q0Wldkc2JVcHNNVFpGVm05cGJYcFhLMVZWVTNkNWNUZExSbTl1WkdObmNrUkJVV05VVmxRS1pXTXJiM0p3UjFaV2VVTjNiamgwUW1FM2NUWnljRE13YVVKQ1YzWXZSMkZtWmpOcmMxSlNSSE16ZEU1NGFXNTFPVGd3T0VsRVlVTjNSMVkwWlVKVE1RcGFiMHhJTkVkcmVDOVZaa2h6TlRKS1VsbElLMUpLU0hGU1RIcHpLMVpNU0ROdlVVOXBjaXR0VTNJNGVYZzNkSGhFVW5wV1dVVlFaSFZuTnpBM01Fa3JDamhwYzBGV0x6SnJSSEpHUkRSRlJ6UnRTMGxJWnpZNFFucEhRa1p4UzJwU01saHllZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vN2Y3YjdjYmUtZDI4Ny00ZTVhLThhNjEtODgyYjhiYjNlZTI5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHBsYWNlbWVudC1ncm91cAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAicGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogcGxhY2VtZW50LWdyb3VwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AcGxhY2VtZW50LWdyb3VwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB6bEtIVjEzQkRyVE4wMEVSOVRWWWs1RWowOUl2RXJCREluUldUWFlhZjBIZkhWc1BtUHJxelEyRA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2614" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:10 GMT + - Thu, 19 Oct 2023 16:42:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2649,7 +2717,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1ec68e1-df22-408f-a978-35e7b2a44236 + - 7e562447-4b54-44a2-b8b5-5aeaf9874289 status: 200 OK code: 200 duration: "" @@ -2660,19 +2728,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/13e3e2f7-66a3-4ef8-8001-3d619685f9f5 - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 + method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.548579Z","id":"13e3e2f7-66a3-4ef8-8001-3d619685f9f5","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"7523ca57-21bc-43f3-b0e5-b4f68c08d005","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-17T10:05:11.669782533Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "665" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:11 GMT + - Thu, 19 Oct 2023 16:42:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2682,7 +2750,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4265de1-65b3-4174-bcc8-7393dd1d017a + - 218e6b34-6f91-4fa0-9d3e-d66ba3f2be07 status: 200 OK code: 200 duration: "" @@ -2693,15 +2761,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7523ca57-21bc-43f3-b0e5-b4f68c08d005 - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 + method: GET response: - body: "" + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: + Content-Length: + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json Date: - - Tue, 17 Oct 2023 10:05:11 GMT + - Thu, 19 Oct 2023 16:42:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2711,9 +2783,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 804cc4d3-733e-4897-9edd-56c08498e3a4 - status: 204 No Content - code: 204 + - e7136111-ec5f-41e0-be71-3bba5d2a7d25 + status: 200 OK + code: 200 duration: "" - request: body: "" @@ -2722,19 +2794,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29?with_additional_resources=true - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:05:11.750003508Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1475" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:11 GMT + - Thu, 19 Oct 2023 16:42:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2744,32 +2816,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cf3205f-ebc2-4b70-8a40-905f9285b851 + - 353459a3-760c-450e-afbb-47fda38e6403 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"placement_group","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744664808Z","created_at":"2023-10-17T10:05:11.744664808Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:05:11.764047806Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1481" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:11 GMT + - Thu, 19 Oct 2023 16:42:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2779,7 +2849,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82cf46a9-8e04-40d4-9e1e-3e09e4044a84 + - a2e93bb7-ad7d-4d4d-afeb-91a7802f795a status: 200 OK code: 200 duration: "" @@ -2790,19 +2860,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:05:11.750004Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1472" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:11 GMT + - Thu, 19 Oct 2023 16:42:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2812,7 +2882,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89547805-c5fe-4f30-94df-48844c84d670 + - 1b27e70c-b6a8-4c3a-8c00-512a3baf27af status: 200 OK code: 200 duration: "" @@ -2823,19 +2893,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:05:11.764048Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1472" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:11 GMT + - Thu, 19 Oct 2023 16:42:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2845,34 +2915,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d16ad995-79d5-4d9a-9c9f-bb89df04adba + - 7c5e4ad6-e54a-4cda-b4a8-634f4a39d999 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"pool-placement-group","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 + method: GET response: - body: '{"placement_group":{"id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","name":"pool-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"nl-ams-2"}}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "326" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:11 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d + - Thu, 19 Oct 2023 16:43:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2882,9 +2948,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b93a4ba-34aa-4545-80fe-4cf53131cf7c - status: 201 Created - code: 201 + - f73f715b-32fd-458e-89e2-afc0790b0a15 + status: 200 OK + code: 200 duration: "" - request: body: "" @@ -2893,19 +2959,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"placement_group":{"id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","name":"pool-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"nl-ams-2"}}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "326" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:12 GMT + - Thu, 19 Oct 2023 16:43:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2915,7 +2981,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f9796c3-90b9-4a75-8d03-a1ec9f17064b + - 29772af1-919f-477a-bdac-5adeb25f09db status: 200 OK code: 200 duration: "" @@ -2926,19 +2992,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:05:11.750004Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1472" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:16 GMT + - Thu, 19 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2948,7 +3014,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec26b1e9-81ca-4981-8ffe-e6cf6de22a33 + - 4505374e-a3c0-4eba-9818-f8cbf1ecb9c6 status: 200 OK code: 200 duration: "" @@ -2959,19 +3025,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:05:13.401330Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1477" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:16 GMT + - Thu, 19 Oct 2023 16:43:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2981,7 +3047,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6dd1d75-e6fe-40b3-abb4-8813be8eb9af + - 7d36b996-fdaa-41a3-b566-9a814a6c768c status: 200 OK code: 200 duration: "" @@ -2992,19 +3058,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:05:13.401330Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1477" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:17 GMT + - Thu, 19 Oct 2023 16:43:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3014,7 +3080,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6daf2939-6d36-4114-be43-49c245248ead + - 0beccf5b-9653-4cce-8645-916a04b8a9d9 status: 200 OK code: 200 duration: "" @@ -3025,19 +3091,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBsYWNlbWVudC1ncm91cCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUlZlRTFzYjFoRVZFMTZUVlJCZUU1cVJYZE5SRlY0VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURFZuQ21vM2JHSTJVamRzYlU5cGQzQjVXR04xZVVvclZrUXZUV2R1TjJSd1VYVm1aVk5VY2s4MEsydGtNM2QyVUZsa2NIcG1SR05CZVdkRFZFWXpkSFZvUW5NS2FuUlBaVUpRTm1OME5HeG5Oelp6T0cxQ2VHUkNRbVJMT0hoc2R6TTRSRVZQZUZkcVVYTjVPRk14ZG5aNmJFOXRTR2h4WlRsa1lVOVFVa2t4V0hFMVJ3cGxWM3BpUlRSMk1VMTNOM2RVWVhaRVdGVlBVVmd5ZWt0Q1ltbGhaalZpTlRCNFpVVlVXbWhpUVRGaWFWTjViMHBIWlhGWFRtTnNkRzlHY21GblREWm9DamxDVUZrNE9VeFZNVEV5Y1hWc1RFRjZUbkU0V1RrMmJHZDNPR3BRUldaMlZEWkhTMmt4WjB0cGNWcFdVa2RqUzNadWNteERTMGxuTlhWYVdFVkpTMk1LUnl0UVdVbHVlVTF6U0hCbFdsSnZhRXR0YTBGTFdqQTNibGRuVm5GYU4xaFdiWFpDWkhSNFpFWkZjVzg1TDJocVlrMVlabmhxWWk5RWN6RldjWHBOWmdwblVqZG9VVlZaYjJOS1lreFFkRm8yTkhOalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQlIwbzJORE5tUTB3eGJXcENVWHBtU0U1WVJtNUlablo2TlRkTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFJESjNSVzg1VFRaQk1uUnJhVTlSYUhaUE1VdHdMekJNWjBoQllsRjRiVEpuY1hsUldXMUtWSEZTUlRjdldFMVFLd294U0ZJNFJucEtiMmRWVHpGdWRuRmxTVU4yVldWVFIxTTJTa05CY0ZSR1lrWnJjR0p6U0RaYU9HZG5ia1U1V21OWGN6ZGhUazFYYXpsNVExbFJVMUF2Q2pGTmQzRnhlR1ZaZHpOMFprWm1ibTFzYWtwTU1qWmtLM0l5VjFOTWRHdHROVk5VZG5ZMVprUlNjMUJNUjBrM2RXRlRPWE0xTWxsWWFVbHNaazFhSzBnS01Ib3hVRlEyUjJoUGNXTXhUV1l3TVVRd1lraFNOV1ptVlhWV2NsVk9kRmRKY1d4Uk4zUlBTWHBaYmt0dWFsQXpTRlZQVUhjeFZsZDBWMnhaTUVkdWVBcEtiWFY2WVVwSlpubGhjMlZZV0dOc1RYRldWamxLYlZScFJYcEhjRlE1YjB0Uk0zbFVZMkpqVVZwMlltaHNkMloxTjFvcmNtZFZTV05LU25vMFJXNTZDbkJoYlZock9Fc3hXVFZGYTFjeFRrWm9abGt4TDA1dUswUTFObVpwVHpoMVduQnBOQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMDZhOGU4NzAtZmViOC00OWMyLTg4ZmYtOGNmMzE0ZDY2MTE0LmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHBsYWNlbWVudC1ncm91cAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAicGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogcGxhY2VtZW50LWdyb3VwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AcGxhY2VtZW50LWdyb3VwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRS0dyMG1EcXBvaUZGMVhaemdraDNzcHNjbTNZeFhkUnN4NGJWRHJ0NFg4emF1YUpscVFwY3FnYg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2614" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:17 GMT + - Thu, 19 Oct 2023 16:43:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3047,7 +3113,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e39c6f1-3e4a-45f5-94f5-6e61b58f5dc5 + - 2660b5ad-14bb-41a3-bef6-1e218c6c3c51 status: 200 OK code: 200 duration: "" @@ -3058,19 +3124,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:05:13.401330Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:36:35.247982Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1477" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:17 GMT + - Thu, 19 Oct 2023 16:43:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3080,32 +3146,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8977a935-2bcd-4392-a46c-a5c29785bab2 + - cc2d6d0a-96c6-47db-b402-6454b2583cb1 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"nl-ams-2","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114/pools - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 + method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523255820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:43:34.315228Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "664" + - "669" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:17 GMT + - Thu, 19 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3115,7 +3179,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b098007c-dc5a-41be-9856-f862701c7b82 + - ab08b179-fdc9-4b63-98a5-6c4e2e6c92fa status: 200 OK code: 200 duration: "" @@ -3126,19 +3190,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:37:50.991377Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:18 GMT + - Thu, 19 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3148,7 +3212,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57e38891-3c99-48de-8704-85b8756d6529 + - 8ed11c88-c89c-4111-8867-4a63b29aef63 status: 200 OK code: 200 duration: "" @@ -3159,19 +3223,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:05:11.750004Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:43:34.315228Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1472" + - "669" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:21 GMT + - Thu, 19 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3181,7 +3245,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a8f546b-dd33-4c2f-bf33-d08e681f3d48 + - 15527cf9-38c7-4d9a-9687-d54a29e24ddc status: 200 OK code: 200 duration: "" @@ -3192,19 +3256,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7/nodes?order_by=created_at_asc&page=1&pool_id=fc2f2114-245c-4126-af09-d4a626251412&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"nodes":[{"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:39:21.654888Z","error_message":null,"id":"4027894d-57fa-4340-ad9d-f70613b6563b","name":"scw-test-pool-placeme-test-pool-placeme-402789","pool_id":"fc2f2114-245c-4126-af09-d4a626251412","provider_id":"scaleway://instance/fr-par-1/df8b6ad0-9aee-4bd8-9173-530acbaef773","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:43:34.297070Z"}],"total_count":1}' headers: Content-Length: - - "661" + - "660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:23 GMT + - Thu, 19 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3214,7 +3278,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 241242bb-9e28-4cb7-8bf0-c71553cccce5 + - 02f07477-bddf-436a-a7fa-67ae42268b0e status: 200 OK code: 200 duration: "" @@ -3225,19 +3289,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.969024Z","created_at":"2023-10-17T10:00:26.969024Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:05:11.750004Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:37:50.991377Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1472" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:26 GMT + - Thu, 19 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3247,7 +3311,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d6ac9ac-803b-4b2d-9ac6-e274df2bde1c + - af597d16-7adb-4167-bfa0-ec48c391b61e status: 200 OK code: 200 duration: "" @@ -3258,19 +3322,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:43:34.315228Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "669" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:28 GMT + - Thu, 19 Oct 2023 16:43:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3280,7 +3344,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77485a2b-eed1-43f2-9ea7-025cd32b3f05 + - 3a1d23ff-2400-42e9-bcf4-dd69a9748009 status: 200 OK code: 200 duration: "" @@ -3291,19 +3355,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9589709f-af0f-49cb-923c-013c1e52a7e9 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"7f7b7cbe-d287-4e5a-8a61-882b8bb3ee29","type":"not_found"}' + body: '{"created_at":"2023-10-19T16:36:28.273413Z","dhcp_enabled":true,"id":"9589709f-af0f-49cb-923c-013c1e52a7e9","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:36:28.273413Z","id":"f1cb0c41-9384-4d62-9cd7-6ef07d1830af","subnet":"172.16.12.0/22","updated_at":"2023-10-19T16:36:28.273413Z"},{"created_at":"2023-10-19T16:36:28.273413Z","id":"e465714b-f596-4260-8e5a-1a8bee719b49","subnet":"fd63:256c:45f7:dc6::/64","updated_at":"2023-10-19T16:36:28.273413Z"}],"tags":[],"updated_at":"2023-10-19T16:36:28.273413Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "128" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:32 GMT + - Thu, 19 Oct 2023 16:43:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3313,9 +3377,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48104e93-e97c-4a9d-93d4-3c70ddc465b2 - status: 404 Not Found - code: 404 + - ed1f044b-eecc-46da-9e8e-f0f22aca2315 + status: 200 OK + code: 200 duration: "" - request: body: "" @@ -3324,19 +3388,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"placement_group":{"id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "661" + - "331" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:33 GMT + - Thu, 19 Oct 2023 16:43:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3346,7 +3410,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cf37d2a-a394-4dc0-a95d-1677c6ff3e0b + - 1c11eed4-16bd-4205-8fcb-b36e233c004e status: 200 OK code: 200 duration: "" @@ -3357,19 +3421,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:37:50.991377Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:38 GMT + - Thu, 19 Oct 2023 16:43:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3379,7 +3443,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f64532af-87b5-4bbf-a3a4-05814e0766ba + - 84321f4e-9c91-4a18-8795-3959e3438207 status: 200 OK code: 200 duration: "" @@ -3390,19 +3454,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7/kubeconfig method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoUFJFVXlUWHBaZWsxV2IxaEVWRTE2VFZSQmVFOUVSVEpOZWxsNlRWWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFhvNENtYzNObTVrY1ZBdlVDOUNaVVJPWTFZNGF6Tk5ORko0Ym5CSE1HVjRkVkpuZEZoRFpGaDBSblZNWkV4a09VdzBNM05IVVVWWE1URTNSVFExYzI5alFrZ0taREZaVVhZeU5UQkJTVlpOYzNJMVRsQXZSMVYzWWtaNmN6Y3hMekV2WTIxWVNuQm1NMnN4U0dKT1MzRnNWMEp6UzNweFZFcGxWRFJGSzNKR1puaFVOQXBVZDJFNWFsUTVkbEp5U1dwRWRFTkVjV3hUTDNZeWFWRjBOMFp2VVhsR2VuTnlNSE5TVjJGSGJXSnJjSEY0WWxJd1EzRkNNV3NyYTFGME4ybFhNVFJsQ25VNFkzQlhTVUpFTlRsa1NXaERORVZDVERoSFFrNWlXbmhLVEVkMEwxVlZkMmhSYld4eU5qWnBTMUo2WW5SMFZYVjRXbVYyYkdOdGFIQjNSVkp2WmpRS2FWWlJNbUphS3pReFpYZEdLMkZoZVZsSFoyUXdiR0UzT1ZGRmNUaDRSazk2ZDNVMFlVZDVWVU5wU2xacmREZzBVRzVrZVhNcmJrbHZMMEZpUTFreFl3cDVkaTkyTlZRNFZVWldkM1J1UTFVelQxcGpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkRUelJDZW5oall6aE5WRFJoY1VoMWVXWlhTRTlaVmpSYVdFNU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJhV0poVkcxdlQyWjFhME5EWjBGdFNtZFhlR1F3Y1dzcmQyMHpaMDVqZFRSaFExaElTMEZNWVZWbGNGRlhOVGhDV0FwQ1pEaFJhbEU0TjBsblZIcFdaRVo1UnpOUFVXZFdNWGxsZDIxbmJrbEVXbG9yUW1aQlNYbDZMMms0TWpkWVVXMW1SSG95WjJVNGJtWk5TMW8xUmxWSENtVTJiMFJITWxsUEszbEhVVVZGUzFoTE1HTllURXB1TmpWU2FVdERPSHBMYVhrd1ZFVjZhM1JxVjJwTWIzcFdaRFJGYkZsWlQyRmtaVXRPWW1GWGVtZ0tkRXN5TjFseWRsZHRjbVJsU2tSalJ5OUJZMVp0VjJWbFYzQkNUM1pLTjAxQ1MzcGlNMGcxVkc4clUzRnVRbkEyWVRVNFlTOWtiMGd2T0VodlVuVlFWZ3BpV0U1bU1VUTBiRUpDV0dadlUwVkNNVUpwTVdSbVJ6QnBNRVlyYnpOb2FXRkNSVkJCYVd0SlRqWTBMM1l4TkVzdmFVMHlWbGxIZWk5aWFURk5jVGRoQ2k4eE1rZFJaMVZWWkRGblZVcDRjMnhIZHpCTmIxSm5SbTFJWlZseEwxZDZhMHd3Y2dvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Y3NTQwZmRiLTQxMGQtNGQ3ZC04MTM3LWJiNmRiYTM2ZjFjNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBMkIycjdDNm1kZFp4cEdUcXRPSFA5R0d5dE55WVJBYW9UdENXYTBNeVY4YTdhTU5MQmZocFcwQw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "661" + - "2694" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:43 GMT + - Thu, 19 Oct 2023 16:43:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3412,7 +3476,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b75a6c10-7db3-4a4f-9976-40d5565fdef4 + - 151d15f1-47cf-435a-938f-466e31a053ca status: 200 OK code: 200 duration: "" @@ -3423,19 +3487,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:43:34.315228Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "669" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:48 GMT + - Thu, 19 Oct 2023 16:43:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3445,7 +3509,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f121ae3-a1a1-4721-be2d-832c4eea964a + - 5fe31828-6c71-424c-8421-c71caca9d744 status: 200 OK code: 200 duration: "" @@ -3456,19 +3520,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7/nodes?order_by=created_at_asc&page=1&pool_id=fc2f2114-245c-4126-af09-d4a626251412&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"nodes":[{"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:39:21.654888Z","error_message":null,"id":"4027894d-57fa-4340-ad9d-f70613b6563b","name":"scw-test-pool-placeme-test-pool-placeme-402789","pool_id":"fc2f2114-245c-4126-af09-d4a626251412","provider_id":"scaleway://instance/fr-par-1/df8b6ad0-9aee-4bd8-9173-530acbaef773","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:43:34.297070Z"}],"total_count":1}' headers: Content-Length: - - "661" + - "660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:53 GMT + - Thu, 19 Oct 2023 16:43:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3478,7 +3542,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 685c1b91-cecf-4b6d-a753-0dc256c255cb + - abd0950d-f473-4a99-9622-b207c21a3c3c status: 200 OK code: 200 duration: "" @@ -3489,19 +3553,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:37:50.991377Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:58 GMT + - Thu, 19 Oct 2023 16:43:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3511,7 +3575,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf04b012-65b4-4b65-882f-d372186583c8 + - 639439f4-7d0e-46f0-b6c2-5a81f2d9ffb0 status: 200 OK code: 200 duration: "" @@ -3522,19 +3586,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9589709f-af0f-49cb-923c-013c1e52a7e9 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"created_at":"2023-10-19T16:36:28.273413Z","dhcp_enabled":true,"id":"9589709f-af0f-49cb-923c-013c1e52a7e9","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:36:28.273413Z","id":"f1cb0c41-9384-4d62-9cd7-6ef07d1830af","subnet":"172.16.12.0/22","updated_at":"2023-10-19T16:36:28.273413Z"},{"created_at":"2023-10-19T16:36:28.273413Z","id":"e465714b-f596-4260-8e5a-1a8bee719b49","subnet":"fd63:256c:45f7:dc6::/64","updated_at":"2023-10-19T16:36:28.273413Z"}],"tags":[],"updated_at":"2023-10-19T16:36:28.273413Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "661" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:03 GMT + - Thu, 19 Oct 2023 16:43:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3544,7 +3608,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d217b5a-d019-4183-b3ee-1d2541b7e297 + - 924ad88b-557e-4143-8a82-b4345bee4b61 status: 200 OK code: 200 duration: "" @@ -3555,19 +3619,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:43:34.315228Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "669" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:08 GMT + - Thu, 19 Oct 2023 16:43:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3577,7 +3641,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 200ff432-608a-4e83-9752-f233c4b18f42 + - 7ebf66ff-ec7b-462a-b4f3-2b3f9a00b994 status: 200 OK code: 200 duration: "" @@ -3588,19 +3652,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"placement_group":{"id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "661" + - "331" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:13 GMT + - Thu, 19 Oct 2023 16:43:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3610,7 +3674,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a96f049-08bd-4173-86a3-e5561a363b83 + - 8185b7bb-e71a-44e0-9505-0fc63e9a110a status: 200 OK code: 200 duration: "" @@ -3621,19 +3685,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7/nodes?order_by=created_at_asc&page=1&pool_id=fc2f2114-245c-4126-af09-d4a626251412&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"nodes":[{"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:39:21.654888Z","error_message":null,"id":"4027894d-57fa-4340-ad9d-f70613b6563b","name":"scw-test-pool-placeme-test-pool-placeme-402789","pool_id":"fc2f2114-245c-4126-af09-d4a626251412","provider_id":"scaleway://instance/fr-par-1/df8b6ad0-9aee-4bd8-9173-530acbaef773","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:43:34.297070Z"}],"total_count":1}' headers: Content-Length: - - "661" + - "660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:19 GMT + - Thu, 19 Oct 2023 16:43:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3643,7 +3707,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ffc1070-fbfe-40b0-b093-8611dd303ebf + - e3fb11fd-d9fd-446d-a2d4-04a6fcccd474 status: 200 OK code: 200 duration: "" @@ -3654,19 +3718,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7/kubeconfig method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoUFJFVXlUWHBaZWsxV2IxaEVWRTE2VFZSQmVFOUVSVEpOZWxsNlRWWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFhvNENtYzNObTVrY1ZBdlVDOUNaVVJPWTFZNGF6Tk5ORko0Ym5CSE1HVjRkVkpuZEZoRFpGaDBSblZNWkV4a09VdzBNM05IVVVWWE1URTNSVFExYzI5alFrZ0taREZaVVhZeU5UQkJTVlpOYzNJMVRsQXZSMVYzWWtaNmN6Y3hMekV2WTIxWVNuQm1NMnN4U0dKT1MzRnNWMEp6UzNweFZFcGxWRFJGSzNKR1puaFVOQXBVZDJFNWFsUTVkbEp5U1dwRWRFTkVjV3hUTDNZeWFWRjBOMFp2VVhsR2VuTnlNSE5TVjJGSGJXSnJjSEY0WWxJd1EzRkNNV3NyYTFGME4ybFhNVFJsQ25VNFkzQlhTVUpFTlRsa1NXaERORVZDVERoSFFrNWlXbmhLVEVkMEwxVlZkMmhSYld4eU5qWnBTMUo2WW5SMFZYVjRXbVYyYkdOdGFIQjNSVkp2WmpRS2FWWlJNbUphS3pReFpYZEdLMkZoZVZsSFoyUXdiR0UzT1ZGRmNUaDRSazk2ZDNVMFlVZDVWVU5wU2xacmREZzBVRzVrZVhNcmJrbHZMMEZpUTFreFl3cDVkaTkyTlZRNFZVWldkM1J1UTFVelQxcGpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkRUelJDZW5oall6aE5WRFJoY1VoMWVXWlhTRTlaVmpSYVdFNU5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJhV0poVkcxdlQyWjFhME5EWjBGdFNtZFhlR1F3Y1dzcmQyMHpaMDVqZFRSaFExaElTMEZNWVZWbGNGRlhOVGhDV0FwQ1pEaFJhbEU0TjBsblZIcFdaRVo1UnpOUFVXZFdNWGxsZDIxbmJrbEVXbG9yUW1aQlNYbDZMMms0TWpkWVVXMW1SSG95WjJVNGJtWk5TMW8xUmxWSENtVTJiMFJITWxsUEszbEhVVVZGUzFoTE1HTllURXB1TmpWU2FVdERPSHBMYVhrd1ZFVjZhM1JxVjJwTWIzcFdaRFJGYkZsWlQyRmtaVXRPWW1GWGVtZ0tkRXN5TjFseWRsZHRjbVJsU2tSalJ5OUJZMVp0VjJWbFYzQkNUM1pLTjAxQ1MzcGlNMGcxVkc4clUzRnVRbkEyWVRVNFlTOWtiMGd2T0VodlVuVlFWZ3BpV0U1bU1VUTBiRUpDV0dadlUwVkNNVUpwTVdSbVJ6QnBNRVlyYnpOb2FXRkNSVkJCYVd0SlRqWTBMM1l4TkVzdmFVMHlWbGxIZWk5aWFURk5jVGRoQ2k4eE1rZFJaMVZWWkRGblZVcDRjMnhIZHpCTmIxSm5SbTFJWlZseEwxZDZhMHd3Y2dvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2Y3NTQwZmRiLTQxMGQtNGQ3ZC04MTM3LWJiNmRiYTM2ZjFjNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBMkIycjdDNm1kZFp4cEdUcXRPSFA5R0d5dE55WVJBYW9UdENXYTBNeVY4YTdhTU5MQmZocFcwQw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "661" + - "2694" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:24 GMT + - Thu, 19 Oct 2023 16:43:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3676,7 +3740,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c242f4c-5cd8-41d8-b594-2a6d3dff8b3c + - 1e2dc45d-d382-47c8-aa97-7626e334593a status: 200 OK code: 200 duration: "" @@ -3687,19 +3751,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 - method: GET + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fc2f2114-245c-4126-af09-d4a626251412 + method: DELETE response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","container_runtime":"containerd","created_at":"2023-10-19T16:36:35.239008Z","id":"fc2f2114-245c-4126-af09-d4a626251412","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group","node_type":"gp1_xs","placement_group_id":"ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-19T16:43:38.201796924Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "661" + - "675" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:29 GMT + - Thu, 19 Oct 2023 16:43:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3709,7 +3773,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b30d84eb-4f0a-42f0-92f1-1000b757a87a + - 49ec3cbb-2fa6-494a-9939-95d27c72b017 status: 200 OK code: 200 duration: "" @@ -3720,19 +3784,48 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/ab8ca2ef-a0d7-4a79-a2b9-e7176646c0d0 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Date: + - Thu, 19 Oct 2023 16:43:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 913c4130-e6f9-456f-af5b-6720dfe06b3f + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7?with_additional_resources=true + method: DELETE response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:43:38.276489896Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:34 GMT + - Thu, 19 Oct 2023 16:43:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3742,7 +3835,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22d210fc-6a77-4393-a128-299ab8c42f80 + - 5f66e7f4-b0f6-4e3e-aa54-522eb070d4a8 status: 200 OK code: 200 duration: "" @@ -3753,19 +3846,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:43:38.276490Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:39 GMT + - Thu, 19 Oct 2023 16:43:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3775,10 +3868,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41454bb7-cf06-4bfa-a54a-e85d33e94cff + - 5a574296-90bc-416d-975d-e5f52c9ab437 status: 200 OK code: 200 duration: "" +- request: + body: '{"name":"test-pool-placement-group","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_type":"max_availability"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups + method: POST + response: + body: '{"placement_group":{"id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}' + headers: + Content-Length: + - "331" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:43:38 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/7f6f05c9-ac80-412f-9a34-8a656e6ff284 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c45f8f4e-af42-4c79-841d-cfc008ecb7e0 + status: 201 Created + code: 201 + duration: "" - request: body: "" form: {} @@ -3786,19 +3916,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/7f6f05c9-ac80-412f-9a34-8a656e6ff284 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"placement_group":{"id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}' headers: Content-Length: - - "661" + - "331" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:44 GMT + - Thu, 19 Oct 2023 16:43:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3808,7 +3938,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ab97530-7d09-4af7-92c8-822c1bca289a + - 6d423634-ac14-43aa-a645-f28254001dd9 status: 200 OK code: 200 duration: "" @@ -3819,19 +3949,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:43:38.276490Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:49 GMT + - Thu, 19 Oct 2023 16:43:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3841,7 +3971,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 840e8694-db1c-4b22-93a6-420011730191 + - 57b0b69b-db6d-4553-a83f-57a98711f258 status: 200 OK code: 200 duration: "" @@ -3852,19 +3982,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:43:38.276490Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:54 GMT + - Thu, 19 Oct 2023 16:43:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3874,7 +4004,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eecbabd4-8be6-4349-961a-ba5eda5bc281 + - b994bce8-4f1f-4dff-b84c-5132ecb21368 status: 200 OK code: 200 duration: "" @@ -3885,19 +4015,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://f7540fdb-410d-4d7d-8137-bb6dba36f1c7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:36:29.542789Z","created_at":"2023-10-19T16:36:29.542789Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.f7540fdb-410d-4d7d-8137-bb6dba36f1c7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","ingress":"none","name":"test-pool-placement-group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:43:38.276490Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:59 GMT + - Thu, 19 Oct 2023 16:43:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3907,7 +4037,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9067228e-7779-4ed3-9ed2-269257495907 + - e85d34d4-d116-486a-bc8c-1c4c59b775f0 status: 200 OK code: 200 duration: "" @@ -3918,19 +4048,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f7540fdb-410d-4d7d-8137-bb6dba36f1c7 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"f7540fdb-410d-4d7d-8137-bb6dba36f1c7","type":"not_found"}' headers: Content-Length: - - "661" + - "128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:04 GMT + - Thu, 19 Oct 2023 16:43:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3940,9 +4070,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a6d6a29-e96e-490e-b4ed-e89bfd60f6d6 - status: 200 OK - code: 200 + - efd973e6-0aa9-48d2-8dac-45ef3d23b905 + status: 404 Not Found + code: 404 duration: "" - request: body: "" @@ -3951,19 +4081,54 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9589709f-af0f-49cb-923c-013c1e52a7e9 + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"9589709f-af0f-49cb-923c-013c1e52a7e9","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:43:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0ab8a419-a23d-4cee-8180-f668f56da3fa + status: 404 Not Found + code: 404 + duration: "" +- request: + body: '{"name":"test-pool-placement-group","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks + method: POST response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"created_at":"2023-10-19T16:43:58.680766Z","dhcp_enabled":true,"id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-10-19T16:43:58.680766Z","id":"9ebe3614-855f-49c6-addc-39856c1577db","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:43:58.680766Z"},{"created_at":"2023-10-19T16:43:58.680766Z","id":"d2807e41-8a46-4431-acf1-cca1adc4449a","subnet":"fd68:d440:21c4:d87b::/64","updated_at":"2023-10-19T16:43:58.680766Z"}],"tags":[],"updated_at":"2023-10-19T16:43:58.680766Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}' headers: Content-Length: - - "661" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:09 GMT + - Thu, 19 Oct 2023 16:43:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3973,7 +4138,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abe6d35d-64c1-4b28-bc8a-cbd8d0e82b2f + - bd62a8e8-97d6-4dc5-a46f-07d040bf767c status: 200 OK code: 200 duration: "" @@ -3984,19 +4149,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/4411aeed-e6da-4aa8-bcf2-62092760e70a method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"created_at":"2023-10-19T16:43:58.680766Z","dhcp_enabled":true,"id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-10-19T16:43:58.680766Z","id":"9ebe3614-855f-49c6-addc-39856c1577db","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:43:58.680766Z"},{"created_at":"2023-10-19T16:43:58.680766Z","id":"d2807e41-8a46-4431-acf1-cca1adc4449a","subnet":"fd68:d440:21c4:d87b::/64","updated_at":"2023-10-19T16:43:58.680766Z"}],"tags":[],"updated_at":"2023-10-19T16:43:58.680766Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}' headers: Content-Length: - - "661" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:14 GMT + - Thu, 19 Oct 2023 16:44:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4006,30 +4171,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1df0029-ab1a-43fc-9532-6ed4c9d9e63e + - 74fe5b9e-117b-4db4-909c-68c82267507d status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-placement-group-2","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 - method: GET + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters + method: POST response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220505685Z","created_at":"2023-10-19T16:44:00.220505685Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:44:00.238460647Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1527" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:19 GMT + - Thu, 19 Oct 2023 16:44:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4039,7 +4206,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - feeb816f-3a98-44de-b4d0-a1060be7d3ff + - 7b060f78-898c-4907-a860-9320aebfd691 status: 200 OK code: 200 duration: "" @@ -4050,19 +4217,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:44:00.238461Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1518" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:25 GMT + - Thu, 19 Oct 2023 16:44:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4072,7 +4239,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b784d2db-007f-45fc-b3a1-32301d1dcf2b + - 928d1d9b-2cdb-4cb6-80af-c67539ccda6b status: 200 OK code: 200 duration: "" @@ -4083,19 +4250,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:44:02.043807Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:30 GMT + - Thu, 19 Oct 2023 16:44:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4105,7 +4272,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c0dfac2-7e35-4d28-b970-735d0e1cce9b + - 995bd3b2-22d0-439b-8754-38414d0c7e90 status: 200 OK code: 200 duration: "" @@ -4116,19 +4283,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:44:02.043807Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:35 GMT + - Thu, 19 Oct 2023 16:44:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4138,7 +4305,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a879e5bc-fe5f-4e8e-ab5a-76b9f1fe1e3b + - 19ef5f9b-4e5b-4c00-b1b5-c1bb8be112fb status: 200 OK code: 200 duration: "" @@ -4149,19 +4316,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f/kubeconfig method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhQUkVVeVRrUlJkMDFXYjFoRVZFMTZUVlJCZUU5RVJUSk9SRkYzVFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUWFJpQ2pCQ1dVSktOalZ3YUM4d2NHNXhkR1p4VTA1MFFtUmtUV2hYVnpGSE5uRnVTeXRwVDNkd1lWQmxMeXM0ZDFZNGVrNU1VR0pSWTNsSWNIZGFSMDlhVG1RS04xRkVRbGhxUkRKdk1XbFJjbGh4SzAxVWFGZG9SVXRTU2xKUWIwcDNOMjlKT0N0V1dFdFlSMVVyVERCVlNYbHZVU3M1VldsWGRrOXNjUzk2Y0Zsck1RcHFVVkIxVTJSNk5rY3dhRXB3TkdSVFJUSXhjWGhTVlRnelNVaDZRVlp6TkhBMVpXMXZUblJpYkRkbE5UY3lXSEoxVDJ4Q2NWbFRhMUJ1ZG05eksyMXRDa1ZCV2paelJGWjFlbTUyTUhWVVJGTnpNM2Q0TUVKd1EwVlpabmhZT1dabFpETlNOMHRTUkdJd1VXRTJNSGQxZEdNM2JIUnROMjlaTDJKWEx6UklRbkFLZUV0VWJ6aHpORzQwWlRSVU4ySXJVbkJGYzBrME1EZFZSbFp0WXpWcVZHOHpiVWhoUjJSTU9IVXJXa3gwYm1KNWRWRm1Sa3BLV2lzclNVbEVSVEp5UWdwb2JFeDZObEZwVDJSU1NESnNibnA2V0RoclEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUVowMXlSMGgzUjFaSlRXcGpWQzk2YVRoMllsSmFSMWR4VnpsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ2NFZFJlR1ZCYmk5VU0xbHFVV2hIVFhKbFZraEtRWEZsVmpRckwzbExhSE5HYmpCYVpsVnRjM0JOUTJFNVJVaEdVUXAyTTBkdlNHeHZWbXBrV21obE1VdFBOMmhHVGxBck1WQjRXV2xUVTJScllXMXpXbkJoZFc0MFpuWTNSRTlEYlhGelVqbHBVekZTV1hSSFNqWmpXVVo0Q25ac2RGWkxkQ3QwYzBReGFHMDJPVlZTT0VSTWEwOXhXa1JVVmpVM2Rua3JSbXAyTDFWR01rWTNRMWRpY3pCa0wxWnZNMmhhT0ZGa2JrcFFlV1J4Y20wS2RrTm5hR0ZqVERoMFNVTmFlR1ZsWWtoVGVIZHVRa294Y1hsR2JWaHdjakpETHpZcmIwMTZUMmN5TUdwQlIzWXdXalJtUkVvd1ZGRnlkQzh4U0dOMGJncEJaVWRIYTFCWFlqUkRXbVpWYWpReFFtNWpObUpYUXpGNVJuQlJjakozUkdoRGFGaE1OR3BOT0ZsUGMwSnVNRlZMTlRsbGIyRkdhRUZKZDFjeE5TdDZDbkF2Y0U1NU9EWnpaRk1yTkZOUFRrZ3pWVTVGUmk4MVRtZGtSRVF6YTNNeGRVZDVNUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWEyYjNiMzQtNjUwZi00ZTRiLWI4YmItMzRlOTA0MmMxOThmLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpSllzNU1nSlUxMUVEd2s1dkNoSm5abDhMY0xZRlRldTJ0Q21XaXBDZWU5dnhZMWNFaFJjN0dqeQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "661" + - "2710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:41 GMT + - Thu, 19 Oct 2023 16:44:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4171,7 +4338,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76e2ca2d-d090-40c8-a471-dd0955c128af + - 9b724cf6-e430-41a3-8d19-b94191f3b7fb status: 200 OK code: 200 duration: "" @@ -4182,19 +4349,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:44:02.043807Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:46 GMT + - Thu, 19 Oct 2023 16:44:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4204,30 +4371,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b620918b-7514-4d40-9635-e65df950fc3b + - 64d99123-4f96-4dff-a273-5dc22dffef7a status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"nl-ams-2","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 - method: GET + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f/pools + method: POST response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214077Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:51 GMT + - Thu, 19 Oct 2023 16:44:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4237,7 +4406,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17e9b1fd-6474-456e-9a8e-5f0e5fd204f5 + - d49f0ff2-9af1-43eb-aa99-8591e6dd483a status: 200 OK code: 200 duration: "" @@ -4248,19 +4417,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:56 GMT + - Thu, 19 Oct 2023 16:44:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4270,7 +4439,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69a34b57-82a4-41d8-8ad3-c65ab2954544 + - f0c36b02-30a8-4654-b5a5-e95ad23c9b1e status: 200 OK code: 200 duration: "" @@ -4281,19 +4450,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:01 GMT + - Thu, 19 Oct 2023 16:44:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4303,7 +4472,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 657028a7-e881-4270-b53e-4ee703f19a40 + - e5ad0e1d-47ef-4ff8-a774-47f5391ce844 status: 200 OK code: 200 duration: "" @@ -4314,19 +4483,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:06 GMT + - Thu, 19 Oct 2023 16:44:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4336,7 +4505,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5374ade1-b8cc-4926-9437-252185ae838c + - a0a9894a-f150-4f2d-8410-cf8520dbbc87 status: 200 OK code: 200 duration: "" @@ -4347,19 +4516,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:12 GMT + - Thu, 19 Oct 2023 16:44:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4369,7 +4538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67167979-d388-4af7-8f7b-591e4df46a59 + - e915c46f-2a2a-4d77-8ea6-92c37d7090a6 status: 200 OK code: 200 duration: "" @@ -4380,19 +4549,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:17 GMT + - Thu, 19 Oct 2023 16:44:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4402,7 +4571,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0276a61-3226-49b7-ab60-77cdb004791b + - 775324d8-714e-47cd-a322-7470bf0c22d8 status: 200 OK code: 200 duration: "" @@ -4413,19 +4582,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:22 GMT + - Thu, 19 Oct 2023 16:44:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4435,7 +4604,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65099a09-da88-4328-b70f-c085cf952303 + - f5d05024-41b1-45d5-be0f-922f9770dfee status: 200 OK code: 200 duration: "" @@ -4446,19 +4615,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:27 GMT + - Thu, 19 Oct 2023 16:44:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4468,7 +4637,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c127d63-c6a5-4fbd-9fc2-05cdc89d69d2 + - de371d6f-75d6-4d9d-a30f-06998680c65a status: 200 OK code: 200 duration: "" @@ -4479,19 +4648,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:32 GMT + - Thu, 19 Oct 2023 16:44:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4501,7 +4670,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a1f3285-1692-4358-b6be-9a6c7e1e9312 + - 4f47571f-5f6c-4df9-bd4a-5b7fcc48e26e status: 200 OK code: 200 duration: "" @@ -4512,19 +4681,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:37 GMT + - Thu, 19 Oct 2023 16:44:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4534,7 +4703,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cd509f3-5ed7-43b7-8984-0c2bf04dcac5 + - e6ff6fb3-88f8-4d78-bdb2-c127f4e369fd status: 200 OK code: 200 duration: "" @@ -4545,19 +4714,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:42 GMT + - Thu, 19 Oct 2023 16:44:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4567,7 +4736,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cbeb15a-fd66-4e3f-82a9-0df4f973f3bc + - 16523be0-7dba-4283-b006-b171e8bf07ff status: 200 OK code: 200 duration: "" @@ -4578,19 +4747,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:05:17.523256Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:48 GMT + - Thu, 19 Oct 2023 16:44:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4600,7 +4769,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6225e0ca-b846-4820-a7fd-a143bf17a57b + - bedad5ee-edb8-4ea5-8e63-8d3ecdfe1635 status: 200 OK code: 200 duration: "" @@ -4611,19 +4780,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:08:52.392708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "659" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:53 GMT + - Thu, 19 Oct 2023 16:45:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4633,7 +4802,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d3b0e11-84ba-449c-b2d5-fcfd4a63b343 + - 2963a5bf-85be-41bc-b57a-1d30b49f76ac status: 200 OK code: 200 duration: "" @@ -4644,19 +4813,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:06:25.823561Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1469" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:53 GMT + - Thu, 19 Oct 2023 16:45:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4666,7 +4835,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69dea821-dd42-4839-9922-a8265c6f54b2 + - 7fd703ae-cf73-4fc7-b209-3c9051a81ffd status: 200 OK code: 200 duration: "" @@ -4677,19 +4846,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:08:52.392708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "659" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:53 GMT + - Thu, 19 Oct 2023 16:45:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4699,7 +4868,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 869d6c66-5506-4ae2-a969-9e03f5980dc7 + - 10cf9ecb-a8e7-4fbd-9827-09d4c0e8298c status: 200 OK code: 200 duration: "" @@ -4710,19 +4879,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114/nodes?order_by=created_at_asc&page=1&pool_id=17fb4257-5fd2-48f1-afc8-c2e7f9db6794&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"nodes":[{"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:40.993868Z","error_message":null,"id":"ffe9522d-d94c-4652-a36a-6334dd38c88d","name":"scw-placement-group-placement-group-ffe9522dd9","pool_id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","provider_id":"scaleway://instance/nl-ams-2/4256ea0b-545e-43fe-a7d7-d4e6ccc475ad","public_ip_v4":"51.158.233.91","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-10-17T10:08:52.358656Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "621" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:53 GMT + - Thu, 19 Oct 2023 16:45:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4732,7 +4901,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc0ef316-06e9-4257-9c74-8bee3a1d4410 + - 19bb171e-6ff0-44b8-b7f1-1040fa2aca89 status: 200 OK code: 200 duration: "" @@ -4743,19 +4912,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:06:25.823561Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1469" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:53 GMT + - Thu, 19 Oct 2023 16:45:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4765,7 +4934,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f901f91e-719d-446c-b159-07d102554f91 + - eae4d566-da26-4bf4-9ae9-8e25ce630935 status: 200 OK code: 200 duration: "" @@ -4776,19 +4945,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:08:52.392708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "659" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:53 GMT + - Thu, 19 Oct 2023 16:45:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4798,7 +4967,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 272dd1bd-959d-4f10-83e0-45bc7652a86b + - 4267db32-14a6-4d42-b356-5169043c8784 status: 200 OK code: 200 duration: "" @@ -4809,19 +4978,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:06:25.823561Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1469" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:54 GMT + - Thu, 19 Oct 2023 16:45:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4831,7 +5000,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bd1c223-aa99-424b-87ef-9a5a93c1b720 + - e9e41fde-5a57-45a9-b9b4-6251cb539689 status: 200 OK code: 200 duration: "" @@ -4842,19 +5011,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"placement_group":{"id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","name":"pool-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"nl-ams-2"}}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "326" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:54 GMT + - Thu, 19 Oct 2023 16:45:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4864,7 +5033,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4806aea0-9ffc-41d4-9b94-6b9f6f8fc6c8 + - e0161a54-5469-44e6-801a-2a92f107d5db status: 200 OK code: 200 duration: "" @@ -4875,19 +5044,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBsYWNlbWVudC1ncm91cCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUlZlRTFzYjFoRVZFMTZUVlJCZUU1cVJYZE5SRlY0VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURFZuQ21vM2JHSTJVamRzYlU5cGQzQjVXR04xZVVvclZrUXZUV2R1TjJSd1VYVm1aVk5VY2s4MEsydGtNM2QyVUZsa2NIcG1SR05CZVdkRFZFWXpkSFZvUW5NS2FuUlBaVUpRTm1OME5HeG5Oelp6T0cxQ2VHUkNRbVJMT0hoc2R6TTRSRVZQZUZkcVVYTjVPRk14ZG5aNmJFOXRTR2h4WlRsa1lVOVFVa2t4V0hFMVJ3cGxWM3BpUlRSMk1VMTNOM2RVWVhaRVdGVlBVVmd5ZWt0Q1ltbGhaalZpTlRCNFpVVlVXbWhpUVRGaWFWTjViMHBIWlhGWFRtTnNkRzlHY21GblREWm9DamxDVUZrNE9VeFZNVEV5Y1hWc1RFRjZUbkU0V1RrMmJHZDNPR3BRUldaMlZEWkhTMmt4WjB0cGNWcFdVa2RqUzNadWNteERTMGxuTlhWYVdFVkpTMk1LUnl0UVdVbHVlVTF6U0hCbFdsSnZhRXR0YTBGTFdqQTNibGRuVm5GYU4xaFdiWFpDWkhSNFpFWkZjVzg1TDJocVlrMVlabmhxWWk5RWN6RldjWHBOWmdwblVqZG9VVlZaYjJOS1lreFFkRm8yTkhOalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQlIwbzJORE5tUTB3eGJXcENVWHBtU0U1WVJtNUlablo2TlRkTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFJESjNSVzg1VFRaQk1uUnJhVTlSYUhaUE1VdHdMekJNWjBoQllsRjRiVEpuY1hsUldXMUtWSEZTUlRjdldFMVFLd294U0ZJNFJucEtiMmRWVHpGdWRuRmxTVU4yVldWVFIxTTJTa05CY0ZSR1lrWnJjR0p6U0RaYU9HZG5ia1U1V21OWGN6ZGhUazFYYXpsNVExbFJVMUF2Q2pGTmQzRnhlR1ZaZHpOMFprWm1ibTFzYWtwTU1qWmtLM0l5VjFOTWRHdHROVk5VZG5ZMVprUlNjMUJNUjBrM2RXRlRPWE0xTWxsWWFVbHNaazFhSzBnS01Ib3hVRlEyUjJoUGNXTXhUV1l3TVVRd1lraFNOV1ptVlhWV2NsVk9kRmRKY1d4Uk4zUlBTWHBaYmt0dWFsQXpTRlZQVUhjeFZsZDBWMnhaTUVkdWVBcEtiWFY2WVVwSlpubGhjMlZZV0dOc1RYRldWamxLYlZScFJYcEhjRlE1YjB0Uk0zbFVZMkpqVVZwMlltaHNkMloxTjFvcmNtZFZTV05LU25vMFJXNTZDbkJoYlZock9Fc3hXVFZGYTFjeFRrWm9abGt4TDA1dUswUTFObVpwVHpoMVduQnBOQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMDZhOGU4NzAtZmViOC00OWMyLTg4ZmYtOGNmMzE0ZDY2MTE0LmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHBsYWNlbWVudC1ncm91cAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAicGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogcGxhY2VtZW50LWdyb3VwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AcGxhY2VtZW50LWdyb3VwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRS0dyMG1EcXBvaUZGMVhaemdraDNzcHNjbTNZeFhkUnN4NGJWRHJ0NFg4emF1YUpscVFwY3FnYg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "2614" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:54 GMT + - Thu, 19 Oct 2023 16:45:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4897,7 +5066,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc0003dd-37bc-4b0d-a822-66715e9b2faa + - 922880be-61b0-4e39-b8ea-a3ef45fbe927 status: 200 OK code: 200 duration: "" @@ -4908,19 +5077,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:08:52.392708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "659" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:54 GMT + - Thu, 19 Oct 2023 16:45:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4930,7 +5099,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1d2b0b2-7295-4487-b513-62b68fd39aaf + - 8cc3f241-d229-4270-92be-9a578726f568 status: 200 OK code: 200 duration: "" @@ -4941,19 +5110,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114/nodes?order_by=created_at_asc&page=1&pool_id=17fb4257-5fd2-48f1-afc8-c2e7f9db6794&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"nodes":[{"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:40.993868Z","error_message":null,"id":"ffe9522d-d94c-4652-a36a-6334dd38c88d","name":"scw-placement-group-placement-group-ffe9522dd9","pool_id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","provider_id":"scaleway://instance/nl-ams-2/4256ea0b-545e-43fe-a7d7-d4e6ccc475ad","public_ip_v4":"51.158.233.91","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-10-17T10:08:52.358656Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "621" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:54 GMT + - Thu, 19 Oct 2023 16:45:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4963,7 +5132,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64c7d1b8-f504-48a6-8230-b3020ba81373 + - ffa86cdb-3636-4327-bab3-7482a7c22e2f status: 200 OK code: 200 duration: "" @@ -4974,19 +5143,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:06:25.823561Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1469" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:55 GMT + - Thu, 19 Oct 2023 16:45:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4996,7 +5165,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac163089-a1f3-4396-b822-73e423bd905d + - 5984ddbe-0495-49e4-8ca3-325b941945a9 status: 200 OK code: 200 duration: "" @@ -5007,19 +5176,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"placement_group":{"id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","name":"pool-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"nl-ams-2"}}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "326" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:55 GMT + - Thu, 19 Oct 2023 16:46:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5029,7 +5198,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 287a3b34-fd98-4a48-aeb9-26c84361e559 + - 558b24fa-c9c5-4d80-be11-633dda57ac53 status: 200 OK code: 200 duration: "" @@ -5040,19 +5209,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBsYWNlbWVudC1ncm91cCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUlZlRTFzYjFoRVZFMTZUVlJCZUU1cVJYZE5SRlY0VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURFZuQ21vM2JHSTJVamRzYlU5cGQzQjVXR04xZVVvclZrUXZUV2R1TjJSd1VYVm1aVk5VY2s4MEsydGtNM2QyVUZsa2NIcG1SR05CZVdkRFZFWXpkSFZvUW5NS2FuUlBaVUpRTm1OME5HeG5Oelp6T0cxQ2VHUkNRbVJMT0hoc2R6TTRSRVZQZUZkcVVYTjVPRk14ZG5aNmJFOXRTR2h4WlRsa1lVOVFVa2t4V0hFMVJ3cGxWM3BpUlRSMk1VMTNOM2RVWVhaRVdGVlBVVmd5ZWt0Q1ltbGhaalZpTlRCNFpVVlVXbWhpUVRGaWFWTjViMHBIWlhGWFRtTnNkRzlHY21GblREWm9DamxDVUZrNE9VeFZNVEV5Y1hWc1RFRjZUbkU0V1RrMmJHZDNPR3BRUldaMlZEWkhTMmt4WjB0cGNWcFdVa2RqUzNadWNteERTMGxuTlhWYVdFVkpTMk1LUnl0UVdVbHVlVTF6U0hCbFdsSnZhRXR0YTBGTFdqQTNibGRuVm5GYU4xaFdiWFpDWkhSNFpFWkZjVzg1TDJocVlrMVlabmhxWWk5RWN6RldjWHBOWmdwblVqZG9VVlZaYjJOS1lreFFkRm8yTkhOalEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQlIwbzJORE5tUTB3eGJXcENVWHBtU0U1WVJtNUlablo2TlRkTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFJESjNSVzg1VFRaQk1uUnJhVTlSYUhaUE1VdHdMekJNWjBoQllsRjRiVEpuY1hsUldXMUtWSEZTUlRjdldFMVFLd294U0ZJNFJucEtiMmRWVHpGdWRuRmxTVU4yVldWVFIxTTJTa05CY0ZSR1lrWnJjR0p6U0RaYU9HZG5ia1U1V21OWGN6ZGhUazFYYXpsNVExbFJVMUF2Q2pGTmQzRnhlR1ZaZHpOMFprWm1ibTFzYWtwTU1qWmtLM0l5VjFOTWRHdHROVk5VZG5ZMVprUlNjMUJNUjBrM2RXRlRPWE0xTWxsWWFVbHNaazFhSzBnS01Ib3hVRlEyUjJoUGNXTXhUV1l3TVVRd1lraFNOV1ptVlhWV2NsVk9kRmRKY1d4Uk4zUlBTWHBaYmt0dWFsQXpTRlZQVUhjeFZsZDBWMnhaTUVkdWVBcEtiWFY2WVVwSlpubGhjMlZZV0dOc1RYRldWamxLYlZScFJYcEhjRlE1YjB0Uk0zbFVZMkpqVVZwMlltaHNkMloxTjFvcmNtZFZTV05LU25vMFJXNTZDbkJoYlZock9Fc3hXVFZGYTFjeFRrWm9abGt4TDA1dUswUTFObVpwVHpoMVduQnBOQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMDZhOGU4NzAtZmViOC00OWMyLTg4ZmYtOGNmMzE0ZDY2MTE0LmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHBsYWNlbWVudC1ncm91cAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAicGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogcGxhY2VtZW50LWdyb3VwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AcGxhY2VtZW50LWdyb3VwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRS0dyMG1EcXBvaUZGMVhaemdraDNzcHNjbTNZeFhkUnN4NGJWRHJ0NFg4emF1YUpscVFwY3FnYg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "2614" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:55 GMT + - Thu, 19 Oct 2023 16:46:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5062,7 +5231,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba843b4b-a6b5-4e1c-b770-9d4b5b73a09f + - e9a11caf-2d6e-47bc-b833-06eb3602d65c status: 200 OK code: 200 duration: "" @@ -5073,19 +5242,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114/available-types + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "780" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:55 GMT + - Thu, 19 Oct 2023 16:46:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5095,7 +5264,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 731d24a0-47c7-4149-9a1c-edc2587bbbb0 + - c3d3c856-cead-4abe-a954-f5a2083fbbb9 status: 200 OK code: 200 duration: "" @@ -5106,19 +5275,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:08:52.392708Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "659" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:55 GMT + - Thu, 19 Oct 2023 16:46:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5128,7 +5297,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24251101-7601-418e-852f-298ac57a6b68 + - a59cf4ea-e4e9-44d7-82c1-2acc36edc214 status: 200 OK code: 200 duration: "" @@ -5139,19 +5308,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114/nodes?order_by=created_at_asc&page=1&pool_id=17fb4257-5fd2-48f1-afc8-c2e7f9db6794&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"nodes":[{"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:40.993868Z","error_message":null,"id":"ffe9522d-d94c-4652-a36a-6334dd38c88d","name":"scw-placement-group-placement-group-ffe9522dd9","pool_id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","provider_id":"scaleway://instance/nl-ams-2/4256ea0b-545e-43fe-a7d7-d4e6ccc475ad","public_ip_v4":"51.158.233.91","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-10-17T10:08:52.358656Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "621" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:55 GMT + - Thu, 19 Oct 2023 16:46:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5161,7 +5330,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59aa639b-2d73-4ad6-86c8-9feb4ec9a520 + - 029a626f-e56e-492d-b1c2-cfc449d8d0ee status: 200 OK code: 200 duration: "" @@ -5172,19 +5341,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114/available-types + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "780" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:56 GMT + - Thu, 19 Oct 2023 16:46:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5194,7 +5363,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 181fc3cb-f592-465e-8643-a21ba0923f6d + - e453c61b-2941-4e07-ba07-af31e2c39b54 status: 200 OK code: 200 duration: "" @@ -5205,19 +5374,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/17fb4257-5fd2-48f1-afc8-c2e7f9db6794 - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf + method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","container_runtime":"containerd","created_at":"2023-10-17T10:05:17.507020Z","id":"17fb4257-5fd2-48f1-afc8-c2e7f9db6794","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-17T10:08:56.857249353Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "665" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:56 GMT + - Thu, 19 Oct 2023 16:46:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5227,7 +5396,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d659d84-59e1-4928-a40d-420c541fcf44 + - 7e153796-8363-4d8a-a5f5-1626920231fc status: 200 OK code: 200 duration: "" @@ -5238,19 +5407,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114?with_additional_resources=true - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:08:56.976791786Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1475" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:57 GMT + - Thu, 19 Oct 2023 16:46:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5260,7 +5429,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53ad5de8-4f37-4e77-97c9-0e132befecc2 + - 2348a1fa-2452-4a31-bc40-bf7a6ac9a739 status: 200 OK code: 200 duration: "" @@ -5271,15 +5440,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/1ceccb7a-2e92-4f23-a5a2-e20bdbe8671d - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf + method: GET response: - body: "" + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: + Content-Length: + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json Date: - - Tue, 17 Oct 2023 10:08:57 GMT + - Thu, 19 Oct 2023 16:46:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5289,9 +5462,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3c9511e-aef3-4121-974b-e60f04ef012d - status: 204 No Content - code: 204 + - 8866099f-6df7-4e80-93a5-0e7a68260a03 + status: 200 OK + code: 200 duration: "" - request: body: "" @@ -5300,19 +5473,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:08:56.976792Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1472" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:57 GMT + - Thu, 19 Oct 2023 16:46:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5322,34 +5495,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69e68df4-c603-4655-b9a4-02c2fbe27b59 + - 9405163a-5f09-4e47-9b4c-0f65f7422ffe status: 200 OK code: 200 duration: "" - request: - body: '{"name":"pool-placement-group","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups - method: POST + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf + method: GET response: - body: '{"placement_group":{"id":"9f928167-11f5-43fe-aab4-e38a0043dac3","name":"pool-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"nl-ams-1"}}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "326" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:57 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/9f928167-11f5-43fe-aab4-e38a0043dac3 + - Thu, 19 Oct 2023 16:46:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5359,9 +5528,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31b28841-bb20-4683-9df2-cfc4e2950571 - status: 201 Created - code: 201 + - 31dbce97-53b6-43c8-b2b0-5e1a6f05013a + status: 200 OK + code: 200 duration: "" - request: body: "" @@ -5370,19 +5539,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/9f928167-11f5-43fe-aab4-e38a0043dac3 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"placement_group":{"id":"9f928167-11f5-43fe-aab4-e38a0043dac3","name":"pool-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"nl-ams-1"}}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "326" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:57 GMT + - Thu, 19 Oct 2023 16:46:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5392,7 +5561,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6a9730d-dde0-4269-bb13-5baf189174a3 + - 5e02630b-84ab-46d1-b733-f1116cc497ff status: 200 OK code: 200 duration: "" @@ -5403,19 +5572,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:08:56.976792Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1472" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:02 GMT + - Thu, 19 Oct 2023 16:47:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5425,7 +5594,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69704a86-ebb2-4706-a6a8-a9ad883627b9 + - 432b5316-d43b-4237-bd56-2250c4abf56e status: 200 OK code: 200 duration: "" @@ -5436,19 +5605,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:08:56.976792Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1472" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:07 GMT + - Thu, 19 Oct 2023 16:47:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5458,7 +5627,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15dc6dba-2bb7-4a40-84a8-14f9ade3a50f + - 1bd65ad3-1ff1-4933-b6ff-7573252fe95e status: 200 OK code: 200 duration: "" @@ -5469,19 +5638,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://06a8e870-feb8-49c2-88ff-8cf314d66114.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:05:11.744665Z","created_at":"2023-10-17T10:05:11.744665Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.06a8e870-feb8-49c2-88ff-8cf314d66114.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"06a8e870-feb8-49c2-88ff-8cf314d66114","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-17T10:08:56.976792Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1472" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:12 GMT + - Thu, 19 Oct 2023 16:47:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5491,7 +5660,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 563878a3-d8c9-4840-a868-65066ced47dd + - 0b7df3a5-c72b-410a-bd1a-cf435e41b724 status: 200 OK code: 200 duration: "" @@ -5502,19 +5671,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/06a8e870-feb8-49c2-88ff-8cf314d66114 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"06a8e870-feb8-49c2-88ff-8cf314d66114","type":"not_found"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "128" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:17 GMT + - Thu, 19 Oct 2023 16:47:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5524,32 +5693,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 271e184c-b487-4dbf-b3b7-9d4b4fde8aad - status: 404 Not Found - code: 404 + - 53464567-c846-4055-9106-9c70863ed51f + status: 200 OK + code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"multicloud","name":"placement_group","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287324Z","created_at":"2023-10-17T10:09:17.645287324Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993362Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1482" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:17 GMT + - Thu, 19 Oct 2023 16:47:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5559,7 +5726,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 859434ab-7e7f-4cff-b879-720cdb4ee271 + - 9d184834-fc45-46c7-877a-df85591e557f status: 200 OK code: 200 duration: "" @@ -5570,19 +5737,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:17 GMT + - Thu, 19 Oct 2023 16:47:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5592,7 +5759,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd432036-7dbc-4738-b5b9-aa30c848cad4 + - 7ed232cb-6c35-4711-b2c5-d29fb4da81fc status: 200 OK code: 200 duration: "" @@ -5603,19 +5770,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:22 GMT + - Thu, 19 Oct 2023 16:47:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5625,7 +5792,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76ea2a48-a82a-47e8-b559-93dbc08cae8a + - 76982e33-7d4c-41b0-949f-368233dc0d05 status: 200 OK code: 200 duration: "" @@ -5636,19 +5803,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:27 GMT + - Thu, 19 Oct 2023 16:47:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5658,7 +5825,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74f1bc36-7c8e-4289-b671-be89047e45e4 + - c72dc151-9932-4146-b38a-b704a5ac6550 status: 200 OK code: 200 duration: "" @@ -5669,19 +5836,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:32 GMT + - Thu, 19 Oct 2023 16:47:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5691,7 +5858,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5aaabde7-cd9b-4e84-9aeb-1bbf551d9df4 + - 7119c654-7c92-4242-941d-376691000732 status: 200 OK code: 200 duration: "" @@ -5702,19 +5869,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:37 GMT + - Thu, 19 Oct 2023 16:47:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5724,7 +5891,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed3034cc-604b-419c-b3b2-511e9bc6d1d6 + - 8aecfd91-5a55-43b9-9070-ed7dc1152d63 status: 200 OK code: 200 duration: "" @@ -5735,19 +5902,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:43 GMT + - Thu, 19 Oct 2023 16:47:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5757,7 +5924,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a91776cf-850f-4370-b41e-9a4503646a89 + - d3afafd0-4e65-4cd6-9002-597cbd16d8ba status: 200 OK code: 200 duration: "" @@ -5768,19 +5935,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:48 GMT + - Thu, 19 Oct 2023 16:48:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5790,7 +5957,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 897eb2cd-f92f-437f-bb3b-00be438f234b + - 78b5e3de-b87d-484e-b741-0eba3979c743 status: 200 OK code: 200 duration: "" @@ -5801,19 +5968,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:53 GMT + - Thu, 19 Oct 2023 16:48:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5823,7 +5990,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 701890db-2d5e-46eb-9b81-fe802652f783 + - d06605a5-810e-4e1f-9592-7cada3139dee status: 200 OK code: 200 duration: "" @@ -5834,19 +6001,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:58 GMT + - Thu, 19 Oct 2023 16:48:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5856,7 +6023,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2548965f-8969-4b3e-8259-e7e7fd21144b + - a4a38db8-9269-4fb9-a353-cbc067ec21c2 status: 200 OK code: 200 duration: "" @@ -5867,19 +6034,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:03 GMT + - Thu, 19 Oct 2023 16:48:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5889,7 +6056,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 534f08aa-8078-4a64-8f95-98af07124c67 + - 72f36f73-0f12-4210-8f9e-90dcd68eeecb status: 200 OK code: 200 duration: "" @@ -5900,19 +6067,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:08 GMT + - Thu, 19 Oct 2023 16:48:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5922,7 +6089,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b5b827b-3e65-460c-a806-690b18db126b + - f56ecc4d-9662-4ef3-9db6-e65f84663ac7 status: 200 OK code: 200 duration: "" @@ -5933,19 +6100,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:13 GMT + - Thu, 19 Oct 2023 16:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5955,7 +6122,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62392c3d-9f7e-48ce-b95b-381a8ce6aea4 + - f8955265-960e-482e-8adf-e1ad7d020931 status: 200 OK code: 200 duration: "" @@ -5966,19 +6133,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:09:17.656993Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1473" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:18 GMT + - Thu, 19 Oct 2023 16:48:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5988,7 +6155,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57ca922c-31b4-41ce-a35d-6555bf9263cc + - ba747848-3139-4de9-acbf-446c26d3133f status: 200 OK code: 200 duration: "" @@ -5999,19 +6166,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:10:22.341532Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1470" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:23 GMT + - Thu, 19 Oct 2023 16:48:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6021,7 +6188,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b271601e-5777-4130-aa5d-345d381407f5 + - d272f4c3-df02-4967-91ad-7d2306be224b status: 200 OK code: 200 duration: "" @@ -6032,19 +6199,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:10:22.341532Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1470" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:23 GMT + - Thu, 19 Oct 2023 16:48:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6054,7 +6221,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5c9ab0e-f055-40b8-9465-ddaa33788c8b + - 84f52faf-4d78-40d8-acc9-f91ddec98082 status: 200 OK code: 200 duration: "" @@ -6065,19 +6232,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBsYWNlbWVudC1ncm91cCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUnJlRTlHYjFoRVZFMTZUVlJCZUU1cVJYZE5SR3Q0VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVk4wQ2pVeGEyOWpWbFk0UnpWdVJqUk9kazV5V0RCemJsZENiRWxUUVZwNWJESldjMmxRVGtacGNVWkNWRUptZUd0TlVIRnhjalZTT0hnelJGRlhSSFV3UzFvS2IweHJSMEk0VXpob01uWmtZMUJNZFN0a2FXczBla2xtV1RSMU5FSm5RbEpTWWpSd09YUnRTWGxpV21Gc1JHNTNMMHBsYkZZd05qRkhNVUp5VmxGVGVRcHNZbGhoWjBoNFdqWlVUekIyVGk5a09YQXZSSGRzTkZGa1NYaHlOWFJMWTFwWlUxbHhjemQxYjJoUFJXWnNZbk16ZGtOaVJ6UkxjVmxCUTNobWVHTXpDalJYZWxjd1JERm9jMlIyTjNSd2FGa3haR05JV1haUFpsSXJUVXhTU1VkSVRFWlJjVWxMV25SSlZFWlhUVkJJVkVOYVUwZENWVVYzYUZnNGFpc3lPVWdLTkVwbGNYUlZkU3RGUkRaVlRGQk9VM0U0ZEZCWFFrdHJMMVVyYVcxRVQycENZa2RLUTA5eFJYSldTRTlXTTBFeFdVUTJjV2QzV0dOVFNDdHNZV05TYkFwbFNUWnJURlJ3YjJkUVFtcHhRbFV2T1d0elEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSVptTlFVRUpoUW0wMFlWQkpUR0kxUzIxR1JrSm9ZMmhYVmpoTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ2FXNW9XVlF6YURac1lsQjVPRTQ1VkVzeVNqWjJjV0pCT1hjM2RtSnRTbXQ1T1ZFMGRHaDRhbU55TjFwMFNFMWthUXBJYjNkNlREWTBNREZRVkZwSk1raFNWRWxVWlZCaGNrVkNkbnBaYnpreWFWTTFXR3hhT0M5MFZrbDVSWEZsTkRKMFp6UkZSVWRKTkVKaGNtVlhWVllyQ2xoQmVWbEdVV28zU0ZOR2FuRTFka0ZyZDJsNVF6Umljell6YTI5aVpqQkRVM0pvV1daQk1Wb3dTazF1SzNoc1ZVaGtjMjFvUmtzMlRFSjZPR3BCWkM4S2FrVk5kVzV6WWxsVWFsWmFia0p2Wms5WFlsaE1UVlZsZVVwSVpqTXdNellyTTNJNGJUaENOSEpWYURObGFESjRaRGN2UkRobFZDdE1OVGRsTjA5VlZRcFlObFJWWVcxUk4yTnVWbFpGUTFod1JFeHFTelZ3TVhNME9IVk5lbEZ3ZG5oTEsyd3dUSHAxZDNwcVkxVTVZVzUwUlVoR1VHWjNVM0p6Y2xWbFIyOVFDbkZ2ZFZKc1EybERjMUp3YjJkUFZYUktTbmxJZG1OYVVEQk1WQ3RZWkVGRFVqUlpSUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYTUzOThkOWQtNTg4YS00NGZiLWE3M2YtMDI4MGI3NDY5YWU3LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHBsYWNlbWVudC1ncm91cAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAicGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogcGxhY2VtZW50LWdyb3VwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AcGxhY2VtZW50LWdyb3VwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBhZGpuSFJqRVI4OGNDeDRLajRvR2d2UjhhMUFTVFBGb25lZ3JRWmU2aHdhRHZSWGcwY2h4MjExdQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "2614" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:23 GMT + - Thu, 19 Oct 2023 16:48:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6087,7 +6254,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40692bd3-dae5-4edf-9164-4a5ba7418ddd + - e0eb1131-a14c-42a8-8ec4-b9a455639ed7 status: 200 OK code: 200 duration: "" @@ -6098,19 +6265,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:10:22.341532Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "1470" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:23 GMT + - Thu, 19 Oct 2023 16:48:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6120,32 +6287,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9751a37-b58f-43fd-968f-ab438401d492 + - 910324f8-cd87-4a13-9a44-ceb9ca77f720 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"nl-ams-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7/pools - method: POST + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf + method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975233740Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "664" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:24 GMT + - Thu, 19 Oct 2023 16:48:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6155,7 +6320,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d9c6f90-cd9d-489a-ad58-754d17ba4133 + - c2e706b8-c458-4a14-82bc-15824a537b7a status: 200 OK code: 200 duration: "" @@ -6166,19 +6331,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:24 GMT + - Thu, 19 Oct 2023 16:49:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6188,7 +6353,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a509aa3-823a-4dbd-88d8-3feac238070a + - 20a6b833-f5fb-4a6e-a6a6-e9fc7808eb92 status: 200 OK code: 200 duration: "" @@ -6199,19 +6364,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:29 GMT + - Thu, 19 Oct 2023 16:49:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6221,7 +6386,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c172ed48-c0c9-4775-839d-6e086f185b86 + - 86f124b7-d842-4765-9b74-7d5861be6c09 status: 200 OK code: 200 duration: "" @@ -6232,19 +6397,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:34 GMT + - Thu, 19 Oct 2023 16:49:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6254,7 +6419,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 457566f8-a278-4f52-bab0-aa5c4c84c62a + - 2d2b1d27-88a0-44a0-89b9-3ce38bae0bfc status: 200 OK code: 200 duration: "" @@ -6265,19 +6430,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:39 GMT + - Thu, 19 Oct 2023 16:49:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6287,7 +6452,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8697470d-bfbd-4240-9bf3-bc7545a75825 + - 95800267-e78e-4973-ae28-e39667ed84c3 status: 200 OK code: 200 duration: "" @@ -6298,19 +6463,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:44 GMT + - Thu, 19 Oct 2023 16:49:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6320,7 +6485,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50e3e901-54f0-466c-ad2e-c1ecb2ae49cf + - d158c90d-f7e5-4c05-9adb-76e77867628d status: 200 OK code: 200 duration: "" @@ -6331,19 +6496,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:49 GMT + - Thu, 19 Oct 2023 16:49:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6353,7 +6518,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f29d53a4-6d8b-4f13-afb8-40ccfce5f206 + - 631ca147-4131-4bd2-bec7-738ff3a18733 status: 200 OK code: 200 duration: "" @@ -6364,19 +6529,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:54 GMT + - Thu, 19 Oct 2023 16:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6386,7 +6551,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fae6670d-7ae9-481f-b1b3-2d90f2e231b0 + - 7a85cab2-e9ad-47c4-a8bf-694cd658b7a8 status: 200 OK code: 200 duration: "" @@ -6397,19 +6562,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:59 GMT + - Thu, 19 Oct 2023 16:49:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6419,7 +6584,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec99e47b-3ca5-4d33-b21a-a0d99b25bf79 + - 062f86c0-7f68-4119-b278-74752588c00c status: 200 OK code: 200 duration: "" @@ -6430,19 +6595,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:04 GMT + - Thu, 19 Oct 2023 16:49:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6452,7 +6617,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05a98e1d-cfdd-4eff-8451-0df96f533c8e + - 7b35570c-199a-4246-a58f-74094048f4f9 status: 200 OK code: 200 duration: "" @@ -6463,19 +6628,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:09 GMT + - Thu, 19 Oct 2023 16:49:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6485,7 +6650,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bab0b70d-887a-4cdf-87db-cc9d7e6c815b + - a0f7d2f7-e09b-43fb-b8c0-6da5bc3dc607 status: 200 OK code: 200 duration: "" @@ -6496,19 +6661,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:14 GMT + - Thu, 19 Oct 2023 16:49:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6518,7 +6683,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab8b4d94-3ea3-4bf2-9559-bde643b20e2a + - 194b7d4e-c733-4096-aad7-e4dd1061cfa1 status: 200 OK code: 200 duration: "" @@ -6529,19 +6694,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:19 GMT + - Thu, 19 Oct 2023 16:49:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6551,7 +6716,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73913817-6fd7-40f5-9c82-5b671822875c + - 3411f03c-3bca-49ab-bcc9-982f8c84750d status: 200 OK code: 200 duration: "" @@ -6562,19 +6727,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:24 GMT + - Thu, 19 Oct 2023 16:50:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6584,7 +6749,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8269177d-30d1-480b-b231-6bf508b86f58 + - 0cd246a1-3d3b-470e-b4b9-2d419213c95d status: 200 OK code: 200 duration: "" @@ -6595,19 +6760,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:29 GMT + - Thu, 19 Oct 2023 16:50:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6617,7 +6782,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69b81058-d734-47b6-81fe-32c4c95ccca4 + - b13fd8c3-d387-4035-8e6e-393279d4e8f4 status: 200 OK code: 200 duration: "" @@ -6628,19 +6793,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:35 GMT + - Thu, 19 Oct 2023 16:50:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6650,7 +6815,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc33b94f-a15a-4593-9c2e-4b4294f882e6 + - 1c016aa9-1f26-4603-84b9-0fb0810d874f status: 200 OK code: 200 duration: "" @@ -6661,19 +6826,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:40 GMT + - Thu, 19 Oct 2023 16:50:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6683,7 +6848,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85a1be1e-96d8-4fcb-8198-4f7313060d64 + - 3f08b3e2-6683-40ba-85fc-5b3836bc765a status: 200 OK code: 200 duration: "" @@ -6694,19 +6859,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:45 GMT + - Thu, 19 Oct 2023 16:50:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6716,7 +6881,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a28dc16-16de-4c8a-af40-67605079922b + - face6a1c-002f-4568-8c3e-f5c962aeace5 status: 200 OK code: 200 duration: "" @@ -6727,19 +6892,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:50 GMT + - Thu, 19 Oct 2023 16:50:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6749,7 +6914,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f08ef78e-e626-43c8-9dbc-8f218eb831e9 + - 4196dad1-2955-4684-91b1-39ee6d78da52 status: 200 OK code: 200 duration: "" @@ -6760,19 +6925,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:55 GMT + - Thu, 19 Oct 2023 16:50:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6782,7 +6947,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b200d0f-d2ba-43b1-bea7-0d087d2ad6c3 + - 54aa9abd-c288-46e5-bd99-01ddcd0e99d6 status: 200 OK code: 200 duration: "" @@ -6793,19 +6958,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:00 GMT + - Thu, 19 Oct 2023 16:50:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6815,7 +6980,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d81bae61-7d14-4ff5-9b78-c9a903199912 + - 175c9c8f-5db6-4da1-8373-a0d755ebc8d1 status: 200 OK code: 200 duration: "" @@ -6826,19 +6991,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:05 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6848,7 +7013,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bac59869-3d38-4628-b208-6d6eee665bbe + - ae8d2dfc-111d-45b5-a6e9-380088bad1ce status: 200 OK code: 200 duration: "" @@ -6859,19 +7024,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:10 GMT + - Thu, 19 Oct 2023 16:50:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6881,7 +7046,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6840022-f23d-49d6-93dd-d8b1db7e9dbe + - 21cd9f12-4352-4ba2-b6d7-93d0408e1c1f status: 200 OK code: 200 duration: "" @@ -6892,19 +7057,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:44:06.106214Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:15 GMT + - Thu, 19 Oct 2023 16:50:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6914,7 +7079,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a4eada9-e824-4fc7-ba9b-646b47e591c1 + - 89880c35-eece-41ca-8de0-a5927393ceb8 status: 200 OK code: 200 duration: "" @@ -6925,19 +7090,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:56.432701Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:20 GMT + - Thu, 19 Oct 2023 16:50:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6947,7 +7112,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23510526-f81a-4571-bb50-58890cbd8ad0 + - 73576738-c5a4-4bb9-b35c-77fd54a22b88 status: 200 OK code: 200 duration: "" @@ -6958,19 +7123,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:45:35.123441Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:25 GMT + - Thu, 19 Oct 2023 16:50:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6980,7 +7145,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86ef4ed8-11c0-4976-bea7-55b738f288ad + - 6c4d9db6-975f-40f9-bb6d-b4c91f4c1092 status: 200 OK code: 200 duration: "" @@ -6991,19 +7156,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:56.432701Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:30 GMT + - Thu, 19 Oct 2023 16:50:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7013,7 +7178,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59eca47c-b18c-4bb4-b5ba-bdf312b4b90a + - 1ff6c8eb-9131-45e7-8f8d-cf3e6ad2919d status: 200 OK code: 200 duration: "" @@ -7024,19 +7189,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f/nodes?order_by=created_at_asc&page=1&pool_id=191ddb9e-ba87-4da8-9061-d8c56e7a2ebf&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"nodes":[{"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:45:42.503754Z","error_message":null,"id":"8864a053-4996-433a-9f95-fa89d676da87","name":"scw-test-pool-placeme-test-pool-placeme-8864a0","pool_id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","provider_id":"scaleway://instance/nl-ams-2/d8dcf8f6-65f6-4e8b-b9c6-bb898179c46b","public_ip_v4":"51.158.238.63","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-10-19T16:50:56.412994Z"}],"total_count":1}' headers: Content-Length: - - "661" + - "658" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:35 GMT + - Thu, 19 Oct 2023 16:50:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7046,7 +7211,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 353f9af1-bf57-4fda-b6e3-5d1e1a6a016a + - 425fc6f5-edaf-4c1c-91e6-3ceab2b785f0 status: 200 OK code: 200 duration: "" @@ -7057,19 +7222,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:45:35.123441Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:40 GMT + - Thu, 19 Oct 2023 16:50:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7079,7 +7244,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0f41ee2-1a26-466b-997f-3753b25b5466 + - c321c77a-2481-40cb-8dfb-1c9c1f3b1f9c status: 200 OK code: 200 duration: "" @@ -7090,19 +7255,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:56.432701Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "661" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:45 GMT + - Thu, 19 Oct 2023 16:50:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7112,7 +7277,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0b1afb6-33c7-4390-9aa7-ac10dc6b6c7c + - b0021af2-58ab-4697-9684-5a4d9f8004ba status: 200 OK code: 200 duration: "" @@ -7123,19 +7288,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/4411aeed-e6da-4aa8-bcf2-62092760e70a method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"created_at":"2023-10-19T16:43:58.680766Z","dhcp_enabled":true,"id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-10-19T16:43:58.680766Z","id":"9ebe3614-855f-49c6-addc-39856c1577db","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:43:58.680766Z"},{"created_at":"2023-10-19T16:43:58.680766Z","id":"d2807e41-8a46-4431-acf1-cca1adc4449a","subnet":"fd68:d440:21c4:d87b::/64","updated_at":"2023-10-19T16:43:58.680766Z"}],"tags":[],"updated_at":"2023-10-19T16:43:58.680766Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}' headers: Content-Length: - - "661" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:50 GMT + - Thu, 19 Oct 2023 16:50:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7145,7 +7310,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e95d742-4038-424e-8039-d0014ae32f7c + - 5d6a6906-bc2d-4b80-89e7-5cce433c24cd status: 200 OK code: 200 duration: "" @@ -7156,19 +7321,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/7f6f05c9-ac80-412f-9a34-8a656e6ff284 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"placement_group":{"id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}' headers: Content-Length: - - "661" + - "331" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:55 GMT + - Thu, 19 Oct 2023 16:50:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7178,7 +7343,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c875921a-fca3-4361-a07a-014cb58a2345 + - 6e8a519b-7360-48e9-b41a-a27a5a4bc739 status: 200 OK code: 200 duration: "" @@ -7189,19 +7354,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:45:35.123441Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "661" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:01 GMT + - Thu, 19 Oct 2023 16:50:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7211,7 +7376,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2741893-36d6-4de7-bda0-eafd3ca91731 + - 6bdf99ae-3a6e-4f7e-b61d-f4270aa1a804 status: 200 OK code: 200 duration: "" @@ -7222,19 +7387,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f/kubeconfig method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:10:23.975234Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhQUkVVeVRrUlJkMDFXYjFoRVZFMTZUVlJCZUU5RVJUSk9SRkYzVFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUWFJpQ2pCQ1dVSktOalZ3YUM4d2NHNXhkR1p4VTA1MFFtUmtUV2hYVnpGSE5uRnVTeXRwVDNkd1lWQmxMeXM0ZDFZNGVrNU1VR0pSWTNsSWNIZGFSMDlhVG1RS04xRkVRbGhxUkRKdk1XbFJjbGh4SzAxVWFGZG9SVXRTU2xKUWIwcDNOMjlKT0N0V1dFdFlSMVVyVERCVlNYbHZVU3M1VldsWGRrOXNjUzk2Y0Zsck1RcHFVVkIxVTJSNk5rY3dhRXB3TkdSVFJUSXhjWGhTVlRnelNVaDZRVlp6TkhBMVpXMXZUblJpYkRkbE5UY3lXSEoxVDJ4Q2NWbFRhMUJ1ZG05eksyMXRDa1ZCV2paelJGWjFlbTUyTUhWVVJGTnpNM2Q0TUVKd1EwVlpabmhZT1dabFpETlNOMHRTUkdJd1VXRTJNSGQxZEdNM2JIUnROMjlaTDJKWEx6UklRbkFLZUV0VWJ6aHpORzQwWlRSVU4ySXJVbkJGYzBrME1EZFZSbFp0WXpWcVZHOHpiVWhoUjJSTU9IVXJXa3gwYm1KNWRWRm1Sa3BLV2lzclNVbEVSVEp5UWdwb2JFeDZObEZwVDJSU1NESnNibnA2V0RoclEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUVowMXlSMGgzUjFaSlRXcGpWQzk2YVRoMllsSmFSMWR4VnpsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ2NFZFJlR1ZCYmk5VU0xbHFVV2hIVFhKbFZraEtRWEZsVmpRckwzbExhSE5HYmpCYVpsVnRjM0JOUTJFNVJVaEdVUXAyTTBkdlNHeHZWbXBrV21obE1VdFBOMmhHVGxBck1WQjRXV2xUVTJScllXMXpXbkJoZFc0MFpuWTNSRTlEYlhGelVqbHBVekZTV1hSSFNqWmpXVVo0Q25ac2RGWkxkQ3QwYzBReGFHMDJPVlZTT0VSTWEwOXhXa1JVVmpVM2Rua3JSbXAyTDFWR01rWTNRMWRpY3pCa0wxWnZNMmhhT0ZGa2JrcFFlV1J4Y20wS2RrTm5hR0ZqVERoMFNVTmFlR1ZsWWtoVGVIZHVRa294Y1hsR2JWaHdjakpETHpZcmIwMTZUMmN5TUdwQlIzWXdXalJtUkVvd1ZGRnlkQzh4U0dOMGJncEJaVWRIYTFCWFlqUkRXbVpWYWpReFFtNWpObUpYUXpGNVJuQlJjakozUkdoRGFGaE1OR3BOT0ZsUGMwSnVNRlZMTlRsbGIyRkdhRUZKZDFjeE5TdDZDbkF2Y0U1NU9EWnpaRk1yTkZOUFRrZ3pWVTVGUmk4MVRtZGtSRVF6YTNNeGRVZDVNUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWEyYjNiMzQtNjUwZi00ZTRiLWI4YmItMzRlOTA0MmMxOThmLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpSllzNU1nSlUxMUVEd2s1dkNoSm5abDhMY0xZRlRldTJ0Q21XaXBDZWU5dnhZMWNFaFJjN0dqeQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "661" + - "2710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:06 GMT + - Thu, 19 Oct 2023 16:50:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7244,7 +7409,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 541ebc29-214e-4219-8116-6397f8ee0d76 + - 215573ca-8e03-4253-b0bc-a9aa07c668be status: 200 OK code: 200 duration: "" @@ -7255,19 +7420,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:13:08.179861Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:56.432701Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "659" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:11 GMT + - Thu, 19 Oct 2023 16:50:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7277,7 +7442,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e73729c-ace9-4c72-924f-491236c621cb + - 7059611e-5d5b-46c8-ba7a-92b36ad47750 status: 200 OK code: 200 duration: "" @@ -7288,19 +7453,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f/nodes?order_by=created_at_asc&page=1&pool_id=191ddb9e-ba87-4da8-9061-d8c56e7a2ebf&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:13:08.179861Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"nodes":[{"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:45:42.503754Z","error_message":null,"id":"8864a053-4996-433a-9f95-fa89d676da87","name":"scw-test-pool-placeme-test-pool-placeme-8864a0","pool_id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","provider_id":"scaleway://instance/nl-ams-2/d8dcf8f6-65f6-4e8b-b9c6-bb898179c46b","public_ip_v4":"51.158.238.63","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-10-19T16:50:56.412994Z"}],"total_count":1}' headers: Content-Length: - - "659" + - "658" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:11 GMT + - Thu, 19 Oct 2023 16:50:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7310,7 +7475,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2c8cb85-7db2-4d25-82e6-b5dda2c10dc2 + - c1c5042a-5bbb-4411-b344-9c7648507478 status: 200 OK code: 200 duration: "" @@ -7321,19 +7486,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7/nodes?order_by=created_at_asc&page=1&pool_id=e934e8fa-68ca-4bde-9583-e9a762fa8274&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f method: GET response: - body: '{"nodes":[{"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:10:24.429392Z","error_message":null,"id":"525d88c7-0b66-4882-877a-acfb7a08e0e6","name":"scw-placement-group-placement-group-525d88c70b","pool_id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","provider_id":"scaleway://instance/nl-ams-1/4215d690-1b11-46ff-a93f-97fd17a53367","public_ip_v4":"51.15.95.76","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:13:08.162698Z"}],"total_count":1}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:45:35.123441Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "619" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:11 GMT + - Thu, 19 Oct 2023 16:51:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7343,7 +7508,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c0ae8e9-571f-4fe5-9c9a-067a52150914 + - 29a54c00-c874-4a8a-8449-9fc0fdf5a680 status: 200 OK code: 200 duration: "" @@ -7354,19 +7519,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/4411aeed-e6da-4aa8-bcf2-62092760e70a method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:10:22.341532Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"created_at":"2023-10-19T16:43:58.680766Z","dhcp_enabled":true,"id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","name":"test-pool-placement-group","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2023-10-19T16:43:58.680766Z","id":"9ebe3614-855f-49c6-addc-39856c1577db","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:43:58.680766Z"},{"created_at":"2023-10-19T16:43:58.680766Z","id":"d2807e41-8a46-4431-acf1-cca1adc4449a","subnet":"fd68:d440:21c4:d87b::/64","updated_at":"2023-10-19T16:43:58.680766Z"}],"tags":[],"updated_at":"2023-10-19T16:43:58.680766Z","vpc_id":"4309b839-ccd3-4b18-ab44-8d79ebcde6a1"}' headers: Content-Length: - - "1470" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:11 GMT + - Thu, 19 Oct 2023 16:51:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7376,7 +7541,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3eea2947-7426-45a5-8ecd-285c8277526e + - f55ff71d-d67d-4a16-bb7d-68448e3d75a4 status: 200 OK code: 200 duration: "" @@ -7387,19 +7552,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/7f6f05c9-ac80-412f-9a34-8a656e6ff284 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:13:08.179861Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"placement_group":{"id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-2"}}' headers: Content-Length: - - "659" + - "331" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:11 GMT + - Thu, 19 Oct 2023 16:51:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7409,7 +7574,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3acf0666-1999-4f60-a1b5-770b00f62fe1 + - fa65683d-fd2d-4265-93c5-4854d551adc3 status: 200 OK code: 200 duration: "" @@ -7420,19 +7585,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:10:22.341532Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhQUkVVeVRrUlJkMDFXYjFoRVZFMTZUVlJCZUU5RVJUSk9SRkYzVFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUWFJpQ2pCQ1dVSktOalZ3YUM4d2NHNXhkR1p4VTA1MFFtUmtUV2hYVnpGSE5uRnVTeXRwVDNkd1lWQmxMeXM0ZDFZNGVrNU1VR0pSWTNsSWNIZGFSMDlhVG1RS04xRkVRbGhxUkRKdk1XbFJjbGh4SzAxVWFGZG9SVXRTU2xKUWIwcDNOMjlKT0N0V1dFdFlSMVVyVERCVlNYbHZVU3M1VldsWGRrOXNjUzk2Y0Zsck1RcHFVVkIxVTJSNk5rY3dhRXB3TkdSVFJUSXhjWGhTVlRnelNVaDZRVlp6TkhBMVpXMXZUblJpYkRkbE5UY3lXSEoxVDJ4Q2NWbFRhMUJ1ZG05eksyMXRDa1ZCV2paelJGWjFlbTUyTUhWVVJGTnpNM2Q0TUVKd1EwVlpabmhZT1dabFpETlNOMHRTUkdJd1VXRTJNSGQxZEdNM2JIUnROMjlaTDJKWEx6UklRbkFLZUV0VWJ6aHpORzQwWlRSVU4ySXJVbkJGYzBrME1EZFZSbFp0WXpWcVZHOHpiVWhoUjJSTU9IVXJXa3gwYm1KNWRWRm1Sa3BLV2lzclNVbEVSVEp5UWdwb2JFeDZObEZwVDJSU1NESnNibnA2V0RoclEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUVowMXlSMGgzUjFaSlRXcGpWQzk2YVRoMllsSmFSMWR4VnpsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ2NFZFJlR1ZCYmk5VU0xbHFVV2hIVFhKbFZraEtRWEZsVmpRckwzbExhSE5HYmpCYVpsVnRjM0JOUTJFNVJVaEdVUXAyTTBkdlNHeHZWbXBrV21obE1VdFBOMmhHVGxBck1WQjRXV2xUVTJScllXMXpXbkJoZFc0MFpuWTNSRTlEYlhGelVqbHBVekZTV1hSSFNqWmpXVVo0Q25ac2RGWkxkQ3QwYzBReGFHMDJPVlZTT0VSTWEwOXhXa1JVVmpVM2Rua3JSbXAyTDFWR01rWTNRMWRpY3pCa0wxWnZNMmhhT0ZGa2JrcFFlV1J4Y20wS2RrTm5hR0ZqVERoMFNVTmFlR1ZsWWtoVGVIZHVRa294Y1hsR2JWaHdjakpETHpZcmIwMTZUMmN5TUdwQlIzWXdXalJtUkVvd1ZGRnlkQzh4U0dOMGJncEJaVWRIYTFCWFlqUkRXbVpWYWpReFFtNWpObUpYUXpGNVJuQlJjakozUkdoRGFGaE1OR3BOT0ZsUGMwSnVNRlZMTlRsbGIyRkdhRUZKZDFjeE5TdDZDbkF2Y0U1NU9EWnpaRk1yTkZOUFRrZ3pWVTVGUmk4MVRtZGtSRVF6YTNNeGRVZDVNUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZWEyYjNiMzQtNjUwZi00ZTRiLWI4YmItMzRlOTA0MmMxOThmLmFwaS5rOHMubmwtYW1zLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpSllzNU1nSlUxMUVEd2s1dkNoSm5abDhMY0xZRlRldTJ0Q21XaXBDZWU5dnhZMWNFaFJjN0dqeQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1470" + - "2710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:12 GMT + - Thu, 19 Oct 2023 16:51:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7442,7 +7607,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d0578ef-c6ae-4c0f-a3af-68345568f673 + - 05b92d95-87d4-4baa-a530-876895a5fe9d status: 200 OK code: 200 duration: "" @@ -7453,19 +7618,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f/available-types method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBsYWNlbWVudC1ncm91cCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUnJlRTlHYjFoRVZFMTZUVlJCZUU1cVJYZE5SR3Q0VDBadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVk4wQ2pVeGEyOWpWbFk0UnpWdVJqUk9kazV5V0RCemJsZENiRWxUUVZwNWJESldjMmxRVGtacGNVWkNWRUptZUd0TlVIRnhjalZTT0hnelJGRlhSSFV3UzFvS2IweHJSMEk0VXpob01uWmtZMUJNZFN0a2FXczBla2xtV1RSMU5FSm5RbEpTWWpSd09YUnRTWGxpV21Gc1JHNTNMMHBsYkZZd05qRkhNVUp5VmxGVGVRcHNZbGhoWjBoNFdqWlVUekIyVGk5a09YQXZSSGRzTkZGa1NYaHlOWFJMWTFwWlUxbHhjemQxYjJoUFJXWnNZbk16ZGtOaVJ6UkxjVmxCUTNobWVHTXpDalJYZWxjd1JERm9jMlIyTjNSd2FGa3haR05JV1haUFpsSXJUVXhTU1VkSVRFWlJjVWxMV25SSlZFWlhUVkJJVkVOYVUwZENWVVYzYUZnNGFpc3lPVWdLTkVwbGNYUlZkU3RGUkRaVlRGQk9VM0U0ZEZCWFFrdHJMMVVyYVcxRVQycENZa2RLUTA5eFJYSldTRTlXTTBFeFdVUTJjV2QzV0dOVFNDdHNZV05TYkFwbFNUWnJURlJ3YjJkUVFtcHhRbFV2T1d0elEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSVptTlFVRUpoUW0wMFlWQkpUR0kxUzIxR1JrSm9ZMmhYVmpoTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ2FXNW9XVlF6YURac1lsQjVPRTQ1VkVzeVNqWjJjV0pCT1hjM2RtSnRTbXQ1T1ZFMGRHaDRhbU55TjFwMFNFMWthUXBJYjNkNlREWTBNREZRVkZwSk1raFNWRWxVWlZCaGNrVkNkbnBaYnpreWFWTTFXR3hhT0M5MFZrbDVSWEZsTkRKMFp6UkZSVWRKTkVKaGNtVlhWVllyQ2xoQmVWbEdVV28zU0ZOR2FuRTFka0ZyZDJsNVF6Umljell6YTI5aVpqQkRVM0pvV1daQk1Wb3dTazF1SzNoc1ZVaGtjMjFvUmtzMlRFSjZPR3BCWkM4S2FrVk5kVzV6WWxsVWFsWmFia0p2Wms5WFlsaE1UVlZsZVVwSVpqTXdNellyTTNJNGJUaENOSEpWYURObGFESjRaRGN2UkRobFZDdE1OVGRsTjA5VlZRcFlObFJWWVcxUk4yTnVWbFpGUTFod1JFeHFTelZ3TVhNME9IVk5lbEZ3ZG5oTEsyd3dUSHAxZDNwcVkxVTVZVzUwUlVoR1VHWjNVM0p6Y2xWbFIyOVFDbkZ2ZFZKc1EybERjMUp3YjJkUFZYUktTbmxJZG1OYVVEQk1WQ3RZWkVGRFVqUlpSUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYTUzOThkOWQtNTg4YS00NGZiLWE3M2YtMDI4MGI3NDY5YWU3LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHBsYWNlbWVudC1ncm91cAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAicGxhY2VtZW50LWdyb3VwIgogICAgdXNlcjogcGxhY2VtZW50LWdyb3VwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AcGxhY2VtZW50LWdyb3VwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogcGxhY2VtZW50LWdyb3VwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBhZGpuSFJqRVI4OGNDeDRLajRvR2d2UjhhMUFTVFBGb25lZ3JRWmU2aHdhRHZSWGcwY2h4MjExdQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}' headers: Content-Length: - - "2614" + - "780" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:12 GMT + - Thu, 19 Oct 2023 16:51:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7475,7 +7640,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b21c0fa5-1dcf-43a3-aa58-9a614906bf46 + - 426dd13e-0079-430d-a0c9-a871c33ee72f status: 200 OK code: 200 duration: "" @@ -7486,19 +7651,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/9f928167-11f5-43fe-aab4-e38a0043dac3 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: GET response: - body: '{"placement_group":{"id":"9f928167-11f5-43fe-aab4-e38a0043dac3","name":"pool-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"nl-ams-1"}}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:56.432701Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "326" + - "671" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:12 GMT + - Thu, 19 Oct 2023 16:51:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7508,7 +7673,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 951226f3-e800-4380-b72a-789ddfe62c85 + - 6d78e307-dae4-4061-b095-f1928b947f58 status: 200 OK code: 200 duration: "" @@ -7519,19 +7684,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f/nodes?order_by=created_at_asc&page=1&pool_id=191ddb9e-ba87-4da8-9061-d8c56e7a2ebf&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:13:08.179861Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"nodes":[{"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:45:42.503754Z","error_message":null,"id":"8864a053-4996-433a-9f95-fa89d676da87","name":"scw-test-pool-placeme-test-pool-placeme-8864a0","pool_id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","provider_id":"scaleway://instance/nl-ams-2/d8dcf8f6-65f6-4e8b-b9c6-bb898179c46b","public_ip_v4":"51.158.238.63","public_ip_v6":null,"region":"nl-ams","status":"ready","updated_at":"2023-10-19T16:50:56.412994Z"}],"total_count":1}' headers: Content-Length: - - "659" + - "658" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:12 GMT + - Thu, 19 Oct 2023 16:51:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7541,7 +7706,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed267cd3-86d4-4fc9-93f0-4f67557c8698 + - 30b4969e-d24a-429b-ad7f-a7453892ffed status: 200 OK code: 200 duration: "" @@ -7552,19 +7717,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7/nodes?order_by=created_at_asc&page=1&pool_id=e934e8fa-68ca-4bde-9583-e9a762fa8274&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f/available-types method: GET response: - body: '{"nodes":[{"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:10:24.429392Z","error_message":null,"id":"525d88c7-0b66-4882-877a-acfb7a08e0e6","name":"scw-placement-group-placement-group-525d88c70b","pool_id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","provider_id":"scaleway://instance/nl-ams-1/4215d690-1b11-46ff-a93f-97fd17a53367","public_ip_v4":"51.15.95.76","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:13:08.162698Z"}],"total_count":1}' + body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}' headers: Content-Length: - - "619" + - "780" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:12 GMT + - Thu, 19 Oct 2023 16:51:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7574,7 +7739,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55f83906-d58c-4f14-ad2a-c43c87ef00e3 + - d4ce72cd-319e-427c-b0c0-93714864763e status: 200 OK code: 200 duration: "" @@ -7585,19 +7750,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/e934e8fa-68ca-4bde-9583-e9a762fa8274 + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/pools/191ddb9e-ba87-4da8-9061-d8c56e7a2ebf method: DELETE response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","container_runtime":"containerd","created_at":"2023-10-17T10:10:23.964190Z","id":"e934e8fa-68ca-4bde-9583-e9a762fa8274","kubelet_args":{},"max_size":1,"min_size":1,"name":"placement_group","node_type":"gp1_xs","placement_group_id":"9f928167-11f5-43fe-aab4-e38a0043dac3","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-17T10:13:13.540284044Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","container_runtime":"containerd","created_at":"2023-10-19T16:44:06.092527Z","id":"191ddb9e-ba87-4da8-9061-d8c56e7a2ebf","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"7f6f05c9-ac80-412f-9a34-8a656e6ff284","public_ip_disabled":false,"region":"nl-ams","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-19T16:51:02.629326974Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-2"}' headers: Content-Length: - - "665" + - "677" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:13 GMT + - Thu, 19 Oct 2023 16:51:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7607,7 +7772,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b057985-74fc-4c00-911b-d0dc84004d1c + - 40b7da2c-06be-47c3-8631-9d26f74b600f status: 200 OK code: 200 duration: "" @@ -7618,7 +7783,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/9f928167-11f5-43fe-aab4-e38a0043dac3 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/placement_groups/7f6f05c9-ac80-412f-9a34-8a656e6ff284 method: DELETE response: body: "" @@ -7626,7 +7791,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Tue, 17 Oct 2023 10:13:13 GMT + - Thu, 19 Oct 2023 16:51:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7636,7 +7801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e284f7c-ada4-439b-9b93-5863f66c5bc4 + - 479e36d4-935b-405e-ade3-801e67e3a484 status: 204 No Content code: 204 duration: "" @@ -7647,19 +7812,4247 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f?with_additional_resources=true method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:13:13.624004708Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:51:02.784937238Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1521" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d44699f1-e65d-4493-b323-99d84574c2a3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:51:02.784937Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1518" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7a26145c-5051-448f-b437-42285cc12fdc + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-pool-placement-group","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_type":"max_availability"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups + method: POST + response: + body: '{"placement_group":{"id":"fa772429-94bf-457b-91f1-445587df6dce","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-1"}}' + headers: + Content-Length: + - "331" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/fa772429-94bf-457b-91f1-445587df6dce + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c3cb74df-39bd-47e6-9b0a-26200ce83e8d + status: 201 Created + code: 201 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/fa772429-94bf-457b-91f1-445587df6dce + method: GET + response: + body: '{"placement_group":{"id":"fa772429-94bf-457b-91f1-445587df6dce","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-1"}}' + headers: + Content-Length: + - "331" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:03 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c6f043d-794b-49ee-94c8-1456c314253e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:51:02.784937Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1518" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a46a5c63-f53c-4736-9c2d-7313ff6f1767 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:51:02.784937Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1518" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3dd254bd-f0bc-4d53-a923-7f50098bc4fa + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ea2b3b34-650f-4e4b-b8bb-34e9042c198f.api.k8s.nl-ams.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:44:00.220506Z","created_at":"2023-10-19T16:44:00.220506Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ea2b3b34-650f-4e4b-b8bb-34e9042c198f.nodes.k8s.nl-ams.scw.cloud","feature_gates":[],"id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"kapsule","updated_at":"2023-10-19T16:51:02.784937Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1518" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8357c1b-0bb6-491c-8db5-0cb07ed7c3af + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/ea2b3b34-650f-4e4b-b8bb-34e9042c198f + method: GET + response: + body: '{"message":"resource is not found","resource":"cluster","resource_id":"ea2b3b34-650f-4e4b-b8bb-34e9042c198f","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88188420-bb01-49d2-89af-7ec97e12e82e + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/4411aeed-e6da-4aa8-bcf2-62092760e70a + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"4411aeed-e6da-4aa8-bcf2-62092760e70a","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cee9e080-15bf-4983-a394-fcf4f6bd0b21 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud","name":"test-pool-placement-group-2","description":"","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484072572Z","created_at":"2023-10-19T16:51:23.484072572Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273309Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1494" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51cfac18-7031-4aba-b533-bcaed8cee1fc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5c4eaa1d-5cb8-4717-99e5-83d7e85a2916 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 47804ff6-48e2-49e8-a9d2-9eecbc09ab8d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6978b93a-a57c-49ac-a02e-3ce073a3533c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4857feb5-937c-4b6a-83a6-31c5f257966c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c512418-1b1c-4ea3-9d3d-6424afd8cb9b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e1013471-bd03-4640-9f9c-8308b338cd1c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fdf732d6-ccdf-41f3-94b4-d929e9d37d7d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 017952af-8d1d-4205-9930-97545003fffa + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:04 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59395100-49d8-45b5-8720-51593ec55049 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:09 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4369e6aa-7fba-4566-8346-f38c845d0861 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 644d5ed9-8b41-4836-97d7-57c4428570e2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78e20d01-1203-4a93-9737-b2eef0856b64 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:24 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0527517c-7464-4796-bc0c-43bf651459a2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c04d1156-e437-4639-a3b4-fc8d1cb512a8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:51:23.494273Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ca9c8af-38f1-417d-998e-c4e8ff3491d2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:52:35.902005Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1482" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7a721f9-a5f0-4e26-b6d7-0f6440885cca + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:52:35.902005Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1482" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dddf2783-c317-4077-9000-360ce3618948 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhQUkVVeVRsUkZlVTVHYjFoRVZFMTZUVlJCZUU5RVJUSk9WRVY1VGtadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTMlZhQ2xsSVNDc3djR0l3WWtkcE0yTktlVFJDUjNSdmRHVnlibTlqWWtKdFVUQXdXSGRzVjNwVmVGTnViRzF3YlhNeWJtdEdVRmMwUjJWNGEyRk9UekZxYXpnS1NVMXFLelp0TnpkaVlVRnNXRm8wVm1ORlNIRjVMMjlCUmxoMFZESXhiM2hVVDJOUGFVNUlUV1ZoYm1oamVXbFRaME5DU1ZoTGVVZFhkR2N5VFdaTFNBcFNZekZKVkhGRVZGTk9SRGd4VjFneVpUYzBZMHR1Ym04dk5EZG5OVUoxYlhwc2FqTjNjR0ZXYVRkNVR6Rk5LM0pZWkZoNU5sUXljRGRVYlZGdFprdFhDbXdyZWpOT1VUSkVaMUJ6Y0VjMmVsQjBNazFOWkhaTldUUktlV0ZTWkdaWllsaENiVWd4VWxkblpUSkhNbFp1UWtSQldWUjVPU3RCUWxGMWNYTm5VR3dLUW5KcWFFMVdWa3h0Tm5scFJVUlFSbWhUTm1kbGJVbDNSbTFSWjNOSFJXeDRaa05ZTld0MVdteDFhak5NTnpVM2VXUTVTSEZKVDBGRlkySTBWMUJWS3dvNGNIbHRZa3RRVWpSVFluWk9UM2RhZURKVlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSWRsZE1UV3MyZUU5VFYwdGFaa05vYUVwQmJXVXdZVXR5VmxaTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFUxcGlWWFJPZWxkWE1XbHVaVmxsU0hBemQwaFBUVmxaYkdsNGFsSmtMMlIwZFVGb1VFUkxSeXRHWVVWTlEwNTZXUXBIT0ZCc1ZtRlBWaXRzUlZWMlVuUXhNbkJRWms4NUswaEpjbWhYTDNSSEwxQktMMGhhUzFObFkzZElUamN5U2tORk9EQkxiRFJ5Y21WM2RXTjZTbFZXQ25CcGNHcDRSbFU1WTFSRFkyaFVlR2RqYUZKUU9UUkZkbE01YkRjMFdFbG9iMnRSTm1ObmJ6VlhVRU0xUzFnME5YbERTa1ZRZEhsbVUzWktPV2MyTVhNS09HeDFiMFlyWVROMU1sTllVemxVVHpkc04xbEVSa2ROUWtkQmVVOURZbGxFWWxJM2JHZFBXV0ZtUmtGR05XUnNUR3hOTUM4M04zRkRVMDltZVdwQmRRb3dOVTF1Ukhac016Vk9ZVWhoVERsMVltOTFTR2x2T1cwNFNXdDFkMDVrSzFGb1JHSTRaSGRXVkhwNldWQXlTbVJTWjNGUk9ERjRaR05oTTFCWlVGWlRDbGd3Y21kUU4wTjJSVTVTTTB4TVVtaFFOamM0Y2t3emQyOXFPREpKYVdkMkwxSnhNZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDBjNGRiYzUtZGQwMy00MWUxLTlhMzEtNWNjNGNjZDQ3NWE2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAwSWtJM2YzSWxDOWNIUE1YWjV1NWttNmtaUjNtV1dZQXJ5S0tuUDV3QVZSanlwOGdNeEw5aEFzdg==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2710" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9add7448-cbb0-4991-8504-0ef04603bd91 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:52:35.902005Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1482" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fc8b8709-ebdc-4bed-b88e-c7192399dde4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"nl-ams-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6/pools + method: POST + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838743844Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "676" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19bf3be8-ef93-4012-aace-8357fe60eeca + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c15b41ab-1731-4261-be8e-fb83122ff53c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f5a0f9ee-fc2e-434f-9725-27c841d3bf11 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 684b8172-4838-44c3-8735-94c502844fa1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:52:55 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d9d1870b-54e4-43d9-bbb5-9fdc2203b2fc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ca678e2f-51df-4b29-b0c1-59f93f4a7b65 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:05 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f545575-c009-41ac-b51b-900e43edb16b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 679a2803-2d3e-4fb7-bd9b-d4e147366a5a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ec13779-8502-4a75-acc2-1270fc50e1dc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fc84ddd9-ea5b-4d47-9bb0-9b5436f8b507 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56ef475f-3650-4b18-9dcd-0f80e234094d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:30 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cda27d78-b885-4015-ae6e-73f23efcf614 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:35 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 370fbd9e-922c-45d6-9085-584985d0cca4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 823780d1-78b6-4526-a4d8-911ce8655169 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8bc936b2-5490-4ae0-8970-cd1fa73c6bf7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a61c0eb1-e8b7-4249-bf3c-1c143df49452 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:53:56 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 122dea10-3a04-4e46-8440-04fe4796445b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 016da5c4-2a04-44de-820a-bea8eb36d2dc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:06 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a665d4f9-23de-42f5-aaac-3dccc8fd60c3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:11 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 38d528a8-586c-4250-8013-fed14d4c9661 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b62693cf-1ed3-4988-90ba-1686a7b6e0cd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 23bb3b47-d5dd-4804-a166-5d28b7dd9664 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ec1187c-144f-4eb5-958d-d1abf75f600a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b1930dd7-3ef9-40ca-a7b5-9960293f2866 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:36 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 85160db7-4af5-461d-9484-4921e2b9b0ad + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:41 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5444bbe9-fa4e-4920-a4ee-791f7c06aef6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cdcd1ec8-43ba-4806-8071-e72981c8e0c8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f3d2daa-b4ce-436c-8134-203bde3a03b9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:54:56 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f4120525-1a60-4ceb-9b40-539eedb341e9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ca96483-b785-4587-8afe-ef4da4091673 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:06 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d69e72da-d93b-4cf5-a0e5-0ddd1c945cb2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:11 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5d6d59e-a04d-44cd-a97d-44063101ec5e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 97c85727-6d65-46d3-92a9-110f511743a0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49684360-9666-43c9-ba90-de66a293fd0a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:27 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 967af472-f762-47e1-bfc6-49af5d6c0b2a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 87116204-4991-4c26-8be5-6dd27cc46baf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e649fc9b-45a4-46cb-9ac4-3fac10f06799 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5e45308-dcbe-4ff9-998e-3c962af4e2fc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ad1c53c-ff63-44bf-8548-54c481128c45 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 484838ed-f735-4949-b3ad-5f2c00578399 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:55:57 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 02305e96-ed99-4b3c-a94e-16058dc0a893 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e803094b-5467-4761-977c-b8e0f4416292 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:07 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f4b1e99b-16af-4a8a-b100-19493b8eda49 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3deef45b-fc6b-45a8-a81e-79ef37da6cbf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ecade9b-0244-4776-bad8-20ebfb49e1a1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0a4aa7d-f7bb-4103-a8b7-6a30db12c2b1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:27 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 420fa09e-a223-4c8c-bf2d-5b96cd5f6f6b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 964cdc39-dc42-4dc9-bb89-eac1b1a69410 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b8f6023-1d53-4d84-949d-b344e0f6f09d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 184c873b-5183-40e0-95aa-80ca8a9b2413 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e4f22de2-6a68-4478-a206-80b7099cf3fc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0034c7a2-a625-4b3a-bdc8-2de0bf136266 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:56:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 441a49d6-0633-4849-942c-138a0619142a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:03 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - beda67c8-0c76-43c3-9840-68bded61c54a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 65b13a0d-b114-435d-b501-4b5cb32d18f0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34fd56e3-3b58-4caa-a67a-46dc33aa9199 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 874270ef-3431-48e0-8adf-0925ce7fd2ec + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e8d0a4b9-dd56-4336-a96c-09b4e5139527 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4edc0e40-65c1-41ad-863c-737c07d17bcf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8d46a55-3a0c-42e2-ae6e-6a4264af6f89 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 28d673bd-f6f9-4003-8151-d7a7b67d4780 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c5da1e23-cf0b-4532-b6a5-bb36e94ea840 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 66b4582b-2dca-485c-aaf5-7ad51ea7aa6d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 588cc0b8-cb6f-42e7-8536-f3b6c4cb1468 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:57:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5d4ed64-3c5e-48f4-8d8e-6b03acf3cc58 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:03 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8fb258fe-8a8e-4182-9762-e3bc19895a09 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - acc7572f-d296-46f0-9b4f-aa0be05c5f9a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78569f9f-0df8-4f76-b3c0-5c689b201479 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - babec1a8-24ab-4cb0-a5db-6ae624c8bc03 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8689fb9f-552c-42c4-804c-05b23865c3e7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2e3162b-5308-400c-9120-97f247356826 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 75db072e-aa3c-4a21-ad6e-6706c2e8b875 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33775b85-b72f-40a1-8c09-d65e0f1ab0ec + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - caab3c97-77f6-4223-93df-e2c59e555b78 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b89564f-2d2b-42a7-aa47-b71ebcf2d0dc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a9f5cf68-511e-4947-8031-8b33a2fd29d3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:58:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a27c75f-7720-4977-b126-82f2b86bbd54 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:04 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 76af70a6-bc7e-4267-9322-af997c0e6836 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:09 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bda8459e-57ec-44b3-9360-8e453a81706f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 821e8217-1fe5-482b-9065-dbeab0805c4b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3172677f-a93b-4ffe-997b-5b91ddbc76ea + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:24 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba7850c2-d80b-40af-80aa-f3a41a17a9cb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1842392-7028-4f24-ac97-ee3d00fdd98a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:52:39.838744Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70ca178b-4100-49fe-9c4f-0354633550a2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:59:36.042950Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94274fa5-9778-4870-83da-e8733a9ed82a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:59:36.042950Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2280ce4c-0406-4368-8235-9d3352b86a36 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6/nodes?order_by=created_at_asc&page=1&pool_id=cde6c814-851e-433b-9902-29439700fc3f&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-19T16:55:09.012722Z","error_message":null,"id":"049af804-49b9-4035-957c-cfb11ca7d862","name":"scw-test-pool-placeme-test-pool-placeme-049af8","pool_id":"cde6c814-851e-433b-9902-29439700fc3f","provider_id":"scaleway://instance/nl-ams-1/c3faf0d5-51c4-4b71-aee5-4dfd4c034845","public_ip_v4":"51.15.60.254","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:59:36.018948Z"}],"total_count":1}' + headers: + Content-Length: + - "620" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b62b6ce8-04bd-4708-94d8-fdd65fb933af + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:52:35.902005Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1482" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c443f9b-7130-427c-97d7-ff9cecba2ba8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:59:36.042950Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0fd01dc-3fc4-4cd4-814e-09e383116970 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:52:35.902005Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1482" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5940ef4-0950-4045-9b38-ec08b4b68abc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/fa772429-94bf-457b-91f1-445587df6dce + method: GET + response: + body: '{"placement_group":{"id":"fa772429-94bf-457b-91f1-445587df6dce","name":"test-pool-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"zone":"nl-ams-1"}}' + headers: + Content-Length: + - "331" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d2db364-9038-4c48-a7ca-81fc6e4fe6b0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhQUkVVeVRsUkZlVTVHYjFoRVZFMTZUVlJCZUU5RVJUSk9WRVY1VGtadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTMlZhQ2xsSVNDc3djR0l3WWtkcE0yTktlVFJDUjNSdmRHVnlibTlqWWtKdFVUQXdXSGRzVjNwVmVGTnViRzF3YlhNeWJtdEdVRmMwUjJWNGEyRk9UekZxYXpnS1NVMXFLelp0TnpkaVlVRnNXRm8wVm1ORlNIRjVMMjlCUmxoMFZESXhiM2hVVDJOUGFVNUlUV1ZoYm1oamVXbFRaME5DU1ZoTGVVZFhkR2N5VFdaTFNBcFNZekZKVkhGRVZGTk9SRGd4VjFneVpUYzBZMHR1Ym04dk5EZG5OVUoxYlhwc2FqTjNjR0ZXYVRkNVR6Rk5LM0pZWkZoNU5sUXljRGRVYlZGdFprdFhDbXdyZWpOT1VUSkVaMUJ6Y0VjMmVsQjBNazFOWkhaTldUUktlV0ZTWkdaWllsaENiVWd4VWxkblpUSkhNbFp1UWtSQldWUjVPU3RCUWxGMWNYTm5VR3dLUW5KcWFFMVdWa3h0Tm5scFJVUlFSbWhUTm1kbGJVbDNSbTFSWjNOSFJXeDRaa05ZTld0MVdteDFhak5NTnpVM2VXUTVTSEZKVDBGRlkySTBWMUJWS3dvNGNIbHRZa3RRVWpSVFluWk9UM2RhZURKVlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaSWRsZE1UV3MyZUU5VFYwdGFaa05vYUVwQmJXVXdZVXR5VmxaTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFUxcGlWWFJPZWxkWE1XbHVaVmxsU0hBemQwaFBUVmxaYkdsNGFsSmtMMlIwZFVGb1VFUkxSeXRHWVVWTlEwNTZXUXBIT0ZCc1ZtRlBWaXRzUlZWMlVuUXhNbkJRWms4NUswaEpjbWhYTDNSSEwxQktMMGhhUzFObFkzZElUamN5U2tORk9EQkxiRFJ5Y21WM2RXTjZTbFZXQ25CcGNHcDRSbFU1WTFSRFkyaFVlR2RqYUZKUU9UUkZkbE01YkRjMFdFbG9iMnRSTm1ObmJ6VlhVRU0xUzFnME5YbERTa1ZRZEhsbVUzWktPV2MyTVhNS09HeDFiMFlyWVROMU1sTllVemxVVHpkc04xbEVSa2ROUWtkQmVVOURZbGxFWWxJM2JHZFBXV0ZtUmtGR05XUnNUR3hOTUM4M04zRkRVMDltZVdwQmRRb3dOVTF1Ukhac016Vk9ZVWhoVERsMVltOTFTR2x2T1cwNFNXdDFkMDVrSzFGb1JHSTRaSGRXVkhwNldWQXlTbVJTWjNGUk9ERjRaR05oTTFCWlVGWlRDbGd3Y21kUU4wTjJSVTVTTTB4TVVtaFFOamM0Y2t3emQyOXFPREpKYVdkMkwxSnhNZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDBjNGRiYzUtZGQwMy00MWUxLTlhMzEtNWNjNGNjZDQ3NWE2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1wbGFjZW1lbnQtZ3JvdXAtMgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yIgogICAgdXNlcjogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXBsYWNlbWVudC1ncm91cC0yLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAwSWtJM2YzSWxDOWNIUE1YWjV1NWttNmtaUjNtV1dZQXJ5S0tuUDV3QVZSanlwOGdNeEw5aEFzdg==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2710" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14038353-3b8b-47b2-b5c6-183a5643f571 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:59:36.042950Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "671" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88220805-8eec-4319-9805-2e1a4a05876e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6/nodes?order_by=created_at_asc&page=1&pool_id=cde6c814-851e-433b-9902-29439700fc3f&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-19T16:55:09.012722Z","error_message":null,"id":"049af804-49b9-4035-957c-cfb11ca7d862","name":"scw-test-pool-placeme-test-pool-placeme-049af8","pool_id":"cde6c814-851e-433b-9902-29439700fc3f","provider_id":"scaleway://instance/nl-ams-1/c3faf0d5-51c4-4b71-aee5-4dfd4c034845","public_ip_v4":"51.15.60.254","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:59:36.018948Z"}],"total_count":1}' + headers: + Content-Length: + - "620" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ee66177d-9e7b-4b42-a26f-28e0a67d3064 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/cde6c814-851e-433b-9902-29439700fc3f + method: DELETE + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","container_runtime":"containerd","created_at":"2023-10-19T16:52:39.830297Z","id":"cde6c814-851e-433b-9902-29439700fc3f","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-placement-group-2","node_type":"gp1_xs","placement_group_id":"fa772429-94bf-457b-91f1-445587df6dce","public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-19T16:59:41.624951076Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"nl-ams-1"}' + headers: + Content-Length: + - "677" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:41 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 209b62ed-4d8e-4217-ae17-74a1e44d6609 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6?with_additional_resources=true + method: DELETE + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:59:41.714825286Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1488" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:41 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 897569c4-e7c4-4e74-bc2c-11e5648d1ebf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/placement_groups/fa772429-94bf-457b-91f1-445587df6dce + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Date: + - Thu, 19 Oct 2023 16:59:41 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa92d6ac-27e1-472a-836c-3a7a4ba2d482 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:59:41.714825Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:41 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 311f733c-e83d-474d-9c88-c959928970bb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:59:41.714825Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:59:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 442c07fc-b1bc-4aef-aecb-58967d0ef0c0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:59:41.714825Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1476" + - "1485" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:13 GMT + - Thu, 19 Oct 2023 16:59:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7669,7 +12062,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55ce41be-19d3-4016-97cb-847992af42a8 + - 4474fa92-44cc-43aa-91bf-d7b15bb3f364 status: 200 OK code: 200 duration: "" @@ -7680,19 +12073,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:13:13.624005Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:59:41.714825Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1473" + - "1485" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:13 GMT + - Thu, 19 Oct 2023 16:59:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7702,7 +12095,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17859f84-3483-48f6-8618-e0940c11c462 + - 35e38c96-c7df-4dd8-a8dd-efc48c1a9f1c status: 200 OK code: 200 duration: "" @@ -7713,19 +12106,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:13:13.624005Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:59:41.714825Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1473" + - "1485" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:19 GMT + - Thu, 19 Oct 2023 17:00:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7735,7 +12128,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afe09dc3-378f-424d-9777-c4ded25f1978 + - bf048023-5eba-439e-8772-be965c7574bb status: 200 OK code: 200 duration: "" @@ -7746,19 +12139,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:13:13.624005Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:59:41.714825Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1473" + - "1485" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:24 GMT + - Thu, 19 Oct 2023 17:00:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7768,7 +12161,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c3705c3-d124-4b2f-8f95-c448b3c2b05b + - 503a460f-d09c-40e5-a037-ce19eb785cc3 status: 200 OK code: 200 duration: "" @@ -7779,19 +12172,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://a5398d9d-588a-44fb-a73f-0280b7469ae7.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-17T10:09:17.645287Z","created_at":"2023-10-17T10:09:17.645287Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.a5398d9d-588a-44fb-a73f-0280b7469ae7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","ingress":"none","name":"placement_group","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-17T10:13:13.624005Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-19T16:51:23.484073Z","created_at":"2023-10-19T16:51:23.484073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","ingress":"none","name":"test-pool-placement-group-2","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","placement_group"],"type":"multicloud","updated_at":"2023-10-19T16:59:41.714825Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1473" + - "1485" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:29 GMT + - Thu, 19 Oct 2023 17:00:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7801,7 +12194,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3ed5d8b-7096-4404-a639-7718f2bb9f2a + - 29fe9d72-fb5f-480e-9aea-30a3afcae544 status: 200 OK code: 200 duration: "" @@ -7812,10 +12205,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","type":"not_found"}' headers: Content-Length: - "128" @@ -7824,7 +12217,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:34 GMT + - Thu, 19 Oct 2023 17:00:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7834,7 +12227,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 233f540b-43f7-4793-95c6-eff644787083 + - 0153c0a7-095b-4922-a42c-124e44882e4a status: 404 Not Found code: 404 duration: "" @@ -7845,10 +12238,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a5398d9d-588a-44fb-a73f-0280b7469ae7 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"a5398d9d-588a-44fb-a73f-0280b7469ae7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"40c4dbc5-dd03-41e1-9a31-5cc4ccd475a6","type":"not_found"}' headers: Content-Length: - "128" @@ -7857,7 +12250,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:13:34 GMT + - Thu, 19 Oct 2023 17:00:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7867,7 +12260,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c41f6ca0-6f7a-4563-82b3-8d72e2d0c903 + - 41bc82b0-a170-4e67-be44-8968aa191219 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-pool-private-network.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-private-network.cassette.yaml index 01dd574962..784aa2be15 100644 --- a/scaleway/testdata/k8s-cluster-pool-private-network.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-pool-private-network.cassette.yaml @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:21 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36b39f17-8ca4-44d7-a119-35cbd48164bd + - f0ddd324-815d-4aba-8964-e1b93a589af1 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"test-k8s-private-network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null}' + body: '{"name":"test-k8s-private-network","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null}' form: {} headers: Content-Type: @@ -50,7 +50,7 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: - body: '{"created_at":"2023-10-17T10:00:25.714559Z","id":"b8f09300-a08c-467d-bf66-2a1cf2752f2f","is_default":false,"name":"test-k8s-private-network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","tags":[],"updated_at":"2023-10-17T10:00:25.714559Z"}' + body: '{"created_at":"2023-10-18T16:35:44.902018Z","id":"89dac298-df98-45a1-8871-4b918eb86a0c","is_default":false,"name":"test-k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","tags":[],"updated_at":"2023-10-18T16:35:44.902018Z"}' headers: Content-Length: - "356" @@ -59,7 +59,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:25 GMT + - Wed, 18 Oct 2023 16:35:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +69,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce60095d-7017-4e83-8d05-f570ade20960 + - b12bc5ec-5439-44e0-ae56-3b745a80ae90 status: 200 OK code: 200 duration: "" @@ -80,10 +80,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8f09300-a08c-467d-bf66-2a1cf2752f2f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/89dac298-df98-45a1-8871-4b918eb86a0c method: GET response: - body: '{"created_at":"2023-10-17T10:00:25.714559Z","id":"b8f09300-a08c-467d-bf66-2a1cf2752f2f","is_default":false,"name":"test-k8s-private-network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","tags":[],"updated_at":"2023-10-17T10:00:25.714559Z"}' + body: '{"created_at":"2023-10-18T16:35:44.902018Z","id":"89dac298-df98-45a1-8871-4b918eb86a0c","is_default":false,"name":"test-k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","tags":[],"updated_at":"2023-10-18T16:35:44.902018Z"}' headers: Content-Length: - "356" @@ -92,7 +92,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:26 GMT + - Wed, 18 Oct 2023 16:35:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,12 +102,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc85fb52-d85e-47b6-8e94-da88f68c1f75 + - 4366ba9e-12cf-4148-9958-3be4eb22488c status: 200 OK code: 200 duration: "" - request: - body: '{"name":"test-k8s-private-network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null,"subnets":null,"vpc_id":"b8f09300-a08c-467d-bf66-2a1cf2752f2f"}' + body: '{"name":"test-k8s-private-network","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":"89dac298-df98-45a1-8871-4b918eb86a0c"}' form: {} headers: Content-Type: @@ -118,16 +118,16 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"created_at":"2023-10-17T10:00:26.823509Z","dhcp_enabled":true,"id":"e1f48ed1-d58d-4356-bfb7-008999e09424","name":"test-k8s-private-network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-17T10:00:26.823509Z","id":"20b5b50d-163e-4be2-b01f-ca935435f68a","subnet":"172.16.144.0/22","updated_at":"2023-10-17T10:00:26.823509Z"},{"created_at":"2023-10-17T10:00:26.823509Z","id":"2b912cae-2275-4920-bf14-6af21b9ae09f","subnet":"fd5f:519c:6d46:cd31::/64","updated_at":"2023-10-17T10:00:26.823509Z"}],"tags":[],"updated_at":"2023-10-17T10:00:26.823509Z","vpc_id":"b8f09300-a08c-467d-bf66-2a1cf2752f2f"}' + body: '{"created_at":"2023-10-18T16:35:45.258962Z","dhcp_enabled":true,"id":"c20560a7-d092-404a-8418-8aa95095399c","name":"test-k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:45.258962Z","id":"d146def6-a138-4e37-9ef7-f074dadbd5e5","subnet":"172.16.20.0/22","updated_at":"2023-10-18T16:35:45.258962Z"},{"created_at":"2023-10-18T16:35:45.258962Z","id":"eafe12c9-2714-4f1c-a76f-2ad3b9be8208","subnet":"fd63:256c:45f7:4f62::/64","updated_at":"2023-10-18T16:35:45.258962Z"}],"tags":[],"updated_at":"2023-10-18T16:35:45.258962Z","vpc_id":"89dac298-df98-45a1-8871-4b918eb86a0c"}' headers: Content-Length: - - "726" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:29 GMT + - Wed, 18 Oct 2023 16:35:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -137,7 +137,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84e03155-0d19-4d19-9943-4161e6596988 + - 987fe0a8-3860-44fb-b20f-30ed9ec9a535 status: 200 OK code: 200 duration: "" @@ -148,19 +148,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e1f48ed1-d58d-4356-bfb7-008999e09424 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c20560a7-d092-404a-8418-8aa95095399c method: GET response: - body: '{"created_at":"2023-10-17T10:00:26.823509Z","dhcp_enabled":true,"id":"e1f48ed1-d58d-4356-bfb7-008999e09424","name":"test-k8s-private-network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-17T10:00:26.823509Z","id":"20b5b50d-163e-4be2-b01f-ca935435f68a","subnet":"172.16.144.0/22","updated_at":"2023-10-17T10:00:26.823509Z"},{"created_at":"2023-10-17T10:00:26.823509Z","id":"2b912cae-2275-4920-bf14-6af21b9ae09f","subnet":"fd5f:519c:6d46:cd31::/64","updated_at":"2023-10-17T10:00:26.823509Z"}],"tags":[],"updated_at":"2023-10-17T10:00:26.823509Z","vpc_id":"b8f09300-a08c-467d-bf66-2a1cf2752f2f"}' + body: '{"created_at":"2023-10-18T16:35:45.258962Z","dhcp_enabled":true,"id":"c20560a7-d092-404a-8418-8aa95095399c","name":"test-k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:45.258962Z","id":"d146def6-a138-4e37-9ef7-f074dadbd5e5","subnet":"172.16.20.0/22","updated_at":"2023-10-18T16:35:45.258962Z"},{"created_at":"2023-10-18T16:35:45.258962Z","id":"eafe12c9-2714-4f1c-a76f-2ad3b9be8208","subnet":"fd63:256c:45f7:4f62::/64","updated_at":"2023-10-18T16:35:45.258962Z"}],"tags":[],"updated_at":"2023-10-18T16:35:45.258962Z","vpc_id":"89dac298-df98-45a1-8871-4b918eb86a0c"}' headers: Content-Length: - - "726" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:29 GMT + - Wed, 18 Oct 2023 16:35:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -170,12 +170,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 804df32e-f70d-4d5a-b7da-9d8ca9d12541 + - fc051afd-ea66-43b7-ba74-ee8ddd1af7fb status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"test-k8s-private-network","description":"","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424"}' + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-k8s-private-network","description":"","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"c20560a7-d092-404a-8418-8aa95095399c"}' form: {} headers: Content-Type: @@ -186,7 +186,7 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814690748Z","created_at":"2023-10-17T10:00:29.814690748Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:00:29.822538503Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356181Z","created_at":"2023-10-18T16:35:46.197356181Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:35:46.206480417Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1524" @@ -195,7 +195,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:29 GMT + - Wed, 18 Oct 2023 16:35:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -205,7 +205,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83d19962-79cc-4d0f-9666-2fe4ab5f2f32 + - 988805ff-d497-43ad-b9b8-563fe189181d status: 200 OK code: 200 duration: "" @@ -216,10 +216,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:00:29.822539Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:35:46.206480Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1515" @@ -228,7 +228,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:30 GMT + - Wed, 18 Oct 2023 16:35:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -238,7 +238,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbeffc4b-a813-486e-9ea5-5c8e1babd5dd + - f041ede8-8e41-458a-951a-b40f5ae31263 status: 200 OK code: 200 duration: "" @@ -249,10 +249,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:00:31.438128Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:35:48.208280Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1520" @@ -261,7 +261,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:35 GMT + - Wed, 18 Oct 2023 16:35:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -271,7 +271,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dc5df02-ea20-4f60-a5fc-f852855c9f56 + - f417f411-9182-4251-acba-46b46aee4e01 status: 200 OK code: 200 duration: "" @@ -282,10 +282,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:00:31.438128Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:35:48.208280Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1520" @@ -294,7 +294,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:35 GMT + - Wed, 18 Oct 2023 16:35:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -304,7 +304,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de397551-0fd5-40db-8ffc-e0cb47196985 + - 5029a9d6-4492-442c-9d0e-af2a36387b72 status: 200 OK code: 200 duration: "" @@ -315,10 +315,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXByaXZhdGUtbmV0d29yayIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUkJlazFXYjFoRVZFMTZUVlJCZUU1cVJYZE5SRUY2VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURmN3Q2toT2ExRlVjak0xUlVWS1FtUTVXSEJFUVhwMmQweFlibWRuU3k5dFFrbENia2w0YzJ4b1ptMUNXRE15ZVZCV1dqWkNZMkZhZGxGTlVUUllUeXN6WjBrS2FVWlVWRkF4VkZOUVlWaENXbFp4V0ZKamFqRjRVVEJDVFhoQ05IbHViMGxMU0dSTmNFbG1TVVZIY25KSlowRlNaRW80WXpFd2NVOXJVVWRUVmxaeWN3cHlhbXBoZDNaeWIyRXhiMUZsWTJwSVJYZzBSR05WU0N0RVoxSnVjRzQxVDBKMWIyRXpNM1Z3Y1VsalVtdEdaRUYzZFhsbFVtbG5ORTAyYkdJM1JGaGFDbFowYm5kTlFrbFJjell4ZDFwTlExZDRSbFV4U21rNVVWUmFaV0V2V0dkdk5tVlVURmczU0VOMGVIYzNValJHVVZwWFQwNXdSbEZUZURFeU4yZHlNazhLVGpKSGVXVlRjREZFY2xORFRuSjFjMmx3WWt4clJYUmlVRVZZUVRBd1MxQkdSMVZOYUdrMGREa3hjR2c0ZW1nMGQyTXdjVTVxT0c5eVJWcGhhems1ZUFwc2JrZEphbUp1TmpoellXaDBWbmt2ZERSTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTlNrVnNTVzR5U0d4NU4wcEdlbGRMYkRKak16Vm5OSFp4Vm1aTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFNVZDVRelZwVEVoTlFYbElhRXhoWW14d2FHcERRVVExYjJaeVVWbEVkakp5UkZGcVprOTVWVEY2WkZkWmJuTm1hZ280UnpKM1NqaEdWbFpRUWtwR1EzTTRPVzB4WjJwdmEwWnVlaTlYTUhKSVdqVXdhME4yVUhjdmVsUTBVRGRPU1VzeVJIb3hNVWhhZUc1UVNYaE1jaXQyQ2xOamNXSjRSRnBUT1c4cmNWQkdMekoxZWl0dFJFcHdNamhUTUUxMVEydHpSV2M1TWtvdk1VVnZVWGRQYnpaQ1kwSTFlREphUjJKUVZsTklZVzFsUkRNS1ZEbGtkRkF6V0ZKc1IyTlBTRWRaTjFaWGJIWnNlRGR3ZW5SV1ZtTlFTRFJMTDJGb1NreHNaRkI2UkVWUk1ubHFRWGxSZDIxUlEybGhVV0ZYWW1wa1FRb3JiM2cyTDNCdFZrVm1NV05NUjFVek5taFBObTQxVTFGUlpYQk5MMjFVVEhKa1JsTXdiV05KUmsxUlMwbFlTR2QxVWxsVWEwaFlabE4zVFZabGF5dHNDamRVTVRKR1ZqSTBhekE1ZFVzNFRHdzVXRWxaYjFwck5GZzVRemREVEVKVmR5OW5NZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNmMzNzljNzYtODQ4Yi00NGI1LTgzZGUtMDNiYTZkMDdlNWQwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXByaXZhdGUtbmV0d29yawogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrIgogICAgdXNlcjogdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMZU1iWkxQb1FIdXM4VzQxMXVhdXJzMzU3c3d5cDRYQVJha0ZERDhPS0RQZkp2SkxhVHU3dEFJSA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXByaXZhdGUtbmV0d29yayIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRYcFZNRTR4YjFoRVZFMTZUVlJCZUU1NlJUSk5lbFV3VGpGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTbTR5Q2toelNsTTFXbWxpTjI1cE9XWjRla0UyYUU5TVMxbHZiR2RSTHpsM2JuRjZjamhZVDJjcmJuUXlabU5CYVRscU9EQnZkamhUZUVwRE9WZG1Rek5YWjNjS1dXSnRWVVVyU0RNNFNUSTNPVEpGWjBObmVqRTBZbmwzWlRaUGNFeFBSemR3U0ZZeGExbENUSEZJU0cwNFRYWmxZa3d6WVZobk9XaEZhbkZ1WjBkNE9RcHdSV0pQVFdSRFFUVmFUMjQyVVVoVFozWjBNbFpETHpCMVRGVTRVV2x4ZVRocU5TdGtWV0o0WWxaNFdqVnBRblphV1VJeFZ5dGtSMDh6TnpJNWFYSXdDbXR2TWxOVFlVaDFTVFZXV2tsWGVVd3pOVlZGVWtGVmFUaGFTMjgzT1dWdWFUVlVhRzF0VTB4eGRXRkhXalJTT1RZM1psRldVVkpoZUhFMVJXVjVZVmdLYkVaWk1sbGlLM0ptYkVWUU5IWkVTR3hET0hRMGJsRmpTRFkwZW5ONVdsUk5WaXR3TkVWMk1uYzJNbTFXVDBZdmRrOVdObVF4UTNrNGVuUmtWM2xQWkFwV1dHWTJMMlpwUm5GYVRrYzNMeXRQV25oelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ1pGaDFXRWd4WXk5d1pXMVFWRTE2UVhadmIxQldVR1pIYlZKTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1lqZ3pOWEp1Tmpkd2NqTjVOazR4YVVWdmVuSlZSRWRTY0M5bGFHVXZPVlZXVG5OdGJHeFZjWGh1T1cxSk5qQkNid3A0VkRSYVNEZG1OVUppWkM5bWJFOTBOR0ozU0hjemVqbGlkRVpzVjFSUFFXVlFlVmhGT1VkNlV6Snlka3MwUjBSb1pFUTRNMDFUU21SVk5HRndVVzQ1Q21SQ1ZtbGhjRVp2TVRkRFRXRlJSWGhHUldoeGRrY3JhMXB6VkRKb1pYZHZUM1psWldoNlJUWkdWV1F2WWtreWNYVllTRUUzYUZSTk1EZEdZV3AzZUd3S1QzVTViWGxLYkdKbWJqRkhSSG8xY0RScmRsQm9jRUV4V0dJeWVrbGFaMXBhWVVGNFVFb3lXVVV2WlVsUlRGUlZOaTgwWjBVdmJWaGpSazVHYTJoQmRncHRUelJFU1RKVk9XSjJSSEJNTDFVekwyeEJUM05PUjA1cWQxWlZUVnBpVG14d1ZXdEtkR3Q1WkUxbGVUQnVZbmwxVVRsS01VWjBWVmt3VTJOTFZXWlZDbWs0UWxWblV6RnJlVEJ0YW5CWVZYazVZbGhFVTJObFdYcHNUVU01V0RSamVHTTJXUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vOGU1MDY2YjYtYzkwMC00ODUxLThlMDEtNzZmZWI5ZTM0YWNkLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXByaXZhdGUtbmV0d29yawogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrIgogICAgdXNlcjogdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB3REJPM3pYZE1oV3YxakNySm85NEt2TlZZYncxZTBLS3M1RGpGYUs0TE8zSjlKeEczNFRnNlVwWA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - "2686" @@ -327,7 +327,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:35 GMT + - Wed, 18 Oct 2023 16:35:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -337,7 +337,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11e04900-92e3-465b-a91c-2ba229106fc8 + - 4e795483-88cb-407c-a464-4d7cb28a0a9b status: 200 OK code: 200 duration: "" @@ -348,10 +348,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:00:31.438128Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:35:48.208280Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1520" @@ -360,7 +360,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:35 GMT + - Wed, 18 Oct 2023 16:35:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -370,7 +370,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4ceb096-244c-405a-80fb-584e3b0cadec + - 1fc64037-84e4-401b-9dac-5cd5b2857178 status: 200 OK code: 200 duration: "" @@ -383,10 +383,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0/pools + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd/pools method: POST response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551209613Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621826793Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "618" @@ -395,7 +395,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:35 GMT + - Wed, 18 Oct 2023 16:35:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -405,7 +405,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbed7b2f-fe4c-493a-8a27-628ab8de6e6e + - 0a016787-f7bc-4965-8d4c-80ae6784543e status: 200 OK code: 200 duration: "" @@ -416,10 +416,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -428,7 +428,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:35 GMT + - Wed, 18 Oct 2023 16:35:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -438,7 +438,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11c94a40-9529-414e-9976-12858b832ca4 + - 0b567fd1-27bc-4f1d-9ed7-1281827bb5ee status: 200 OK code: 200 duration: "" @@ -449,10 +449,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -461,7 +461,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:41 GMT + - Wed, 18 Oct 2023 16:35:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -471,7 +471,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 086fbf30-42b3-4099-819f-0bfe5eb5d7a5 + - 8634c51a-479b-4a37-9fef-fb71b2758e94 status: 200 OK code: 200 duration: "" @@ -482,10 +482,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -494,7 +494,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:46 GMT + - Wed, 18 Oct 2023 16:36:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -504,7 +504,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 503a40de-0278-48bb-b2bc-40f0c556f124 + - ce63d0c9-75ac-4eb4-8881-a671fcf98f5c status: 200 OK code: 200 duration: "" @@ -515,10 +515,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -527,7 +527,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:51 GMT + - Wed, 18 Oct 2023 16:36:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -537,7 +537,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7598f4bc-2c49-4126-a6a5-5b923eeca4e1 + - 1b5dcb59-1d11-4f0c-9c24-4fa09c77eb30 status: 200 OK code: 200 duration: "" @@ -548,10 +548,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -560,7 +560,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:57 GMT + - Wed, 18 Oct 2023 16:36:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -570,7 +570,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fb2e316-7e2f-4213-a980-c6f63669db02 + - b27760ac-6539-46e4-b262-73c9b11cef52 status: 200 OK code: 200 duration: "" @@ -581,10 +581,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -593,7 +593,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:02 GMT + - Wed, 18 Oct 2023 16:36:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -603,7 +603,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e44e440b-e28b-4708-80f5-a91639612a4f + - 988f7eb5-6fee-48dd-84a7-6c17d8642a09 status: 200 OK code: 200 duration: "" @@ -614,10 +614,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -626,7 +626,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:08 GMT + - Wed, 18 Oct 2023 16:36:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -636,7 +636,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31d8c6b8-10c3-4b0c-b797-51e4f1cf3b25 + - 50caa719-fcee-4274-92dc-575c187b8064 status: 200 OK code: 200 duration: "" @@ -647,10 +647,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -659,7 +659,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:13 GMT + - Wed, 18 Oct 2023 16:36:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -669,7 +669,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01c055cb-a8d2-42f2-9e65-cabba392cf46 + - 09c54814-4831-496d-afd2-4fc93f6fdec1 status: 200 OK code: 200 duration: "" @@ -680,10 +680,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -692,7 +692,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:18 GMT + - Wed, 18 Oct 2023 16:36:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +702,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74b9b940-537e-4305-bd67-740ad7ac2fb2 + - 14ef828f-29b6-49c8-a236-214065a53017 status: 200 OK code: 200 duration: "" @@ -713,10 +713,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -725,7 +725,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:23 GMT + - Wed, 18 Oct 2023 16:36:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +735,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29c37ee9-ae89-405b-955a-f21a9f1a1393 + - 5476de24-ff48-4684-becd-f0dddbe7c689 status: 200 OK code: 200 duration: "" @@ -746,10 +746,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -758,7 +758,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:29 GMT + - Wed, 18 Oct 2023 16:36:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -768,7 +768,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c2e785a-d42c-4ab2-809b-77102084c9a3 + - ecfb3cae-4ca8-4e4d-a373-ad47a6fa5bf7 status: 200 OK code: 200 duration: "" @@ -779,10 +779,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -791,7 +791,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:34 GMT + - Wed, 18 Oct 2023 16:36:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -801,7 +801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c53c48b-9777-43c4-8691-542763da13c9 + - bebafe93-2336-4bd5-9650-e008024ce1e2 status: 200 OK code: 200 duration: "" @@ -812,10 +812,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -824,7 +824,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:39 GMT + - Wed, 18 Oct 2023 16:36:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84f16427-0ad7-48ac-8af8-0f31bb6dc56e + - 91039fe7-5bd4-47fb-a291-ded4cd7572d0 status: 200 OK code: 200 duration: "" @@ -845,10 +845,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -857,7 +857,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:44 GMT + - Wed, 18 Oct 2023 16:37:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,7 +867,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1dbe790f-7134-41ec-8bf3-6412ed4177d7 + - 0bd7f2f2-9c84-459f-b70e-4b6c828a611d status: 200 OK code: 200 duration: "" @@ -878,10 +878,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -890,7 +890,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:50 GMT + - Wed, 18 Oct 2023 16:37:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -900,7 +900,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9a870ef-6169-4c6a-bde0-5968d812c2f1 + - c9aeb3ee-7fe8-43e8-8d45-6d59fa79928e status: 200 OK code: 200 duration: "" @@ -911,10 +911,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -923,7 +923,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:55 GMT + - Wed, 18 Oct 2023 16:37:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +933,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06b8aac9-e628-4578-94c5-a56db016dae9 + - e4d9dd4b-005b-453f-8b3b-f11a7d3a9e82 status: 200 OK code: 200 duration: "" @@ -944,10 +944,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -956,7 +956,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:00 GMT + - Wed, 18 Oct 2023 16:37:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +966,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e27483dd-c08c-41eb-965b-ceb2ad116e1f + - dfd4c1dc-9651-434e-b0e0-404abd04c98e status: 200 OK code: 200 duration: "" @@ -977,10 +977,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -989,7 +989,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:05 GMT + - Wed, 18 Oct 2023 16:37:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -999,7 +999,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47e6fd15-6ea1-4ce0-bf7d-78dd0c5e148f + - d5f91d61-83a8-467c-97e3-c52120e0eeca status: 200 OK code: 200 duration: "" @@ -1010,10 +1010,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1022,7 +1022,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:10 GMT + - Wed, 18 Oct 2023 16:37:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +1032,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42bb2eb1-24f1-4887-a703-66bf0fac2cc5 + - 60bfe05f-165d-469c-a265-01585362f018 status: 200 OK code: 200 duration: "" @@ -1043,10 +1043,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1055,7 +1055,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:15 GMT + - Wed, 18 Oct 2023 16:37:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1065,7 +1065,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8240bd53-919d-4c63-8f13-21f3eee6454d + - 919cddb9-ea5d-4a15-8495-d9d5850a61ac status: 200 OK code: 200 duration: "" @@ -1076,10 +1076,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1088,7 +1088,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:20 GMT + - Wed, 18 Oct 2023 16:37:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1098,7 +1098,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7773d866-1a41-435e-8949-74baeea08e0a + - a1411672-4f3e-4975-a00a-2a6892e1e9ea status: 200 OK code: 200 duration: "" @@ -1109,10 +1109,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1121,7 +1121,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:25 GMT + - Wed, 18 Oct 2023 16:37:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1131,7 +1131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37522be9-4db6-4abe-b4bd-67d6a6d1e399 + - dd29a11e-59df-412e-a677-0190722f5e10 status: 200 OK code: 200 duration: "" @@ -1142,10 +1142,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1154,7 +1154,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:30 GMT + - Wed, 18 Oct 2023 16:37:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1164,7 +1164,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 002333e5-7339-4063-b07a-9807a486005b + - 7cc0684b-1d08-43c1-a4da-dc593780a880 status: 200 OK code: 200 duration: "" @@ -1175,10 +1175,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1187,7 +1187,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:35 GMT + - Wed, 18 Oct 2023 16:37:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1197,7 +1197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dfdb540-7437-4e54-9048-8c0fd5eae69e + - ab89929b-1f8b-4811-8121-0cfac7696189 status: 200 OK code: 200 duration: "" @@ -1208,10 +1208,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1220,7 +1220,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:40 GMT + - Wed, 18 Oct 2023 16:37:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1230,7 +1230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e350677b-e6a4-4df3-8894-e4325aaf1e93 + - 0052550e-4901-4682-9793-18e4a41f0ec3 status: 200 OK code: 200 duration: "" @@ -1241,10 +1241,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1253,7 +1253,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:45 GMT + - Wed, 18 Oct 2023 16:38:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1263,7 +1263,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcb5b0eb-5d90-4302-8de1-05613cc39e21 + - a3c8cb6e-1f16-486b-bcfd-de4ebecaa1fb status: 200 OK code: 200 duration: "" @@ -1274,10 +1274,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1286,7 +1286,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:50 GMT + - Wed, 18 Oct 2023 16:38:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1296,7 +1296,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71774d57-6d9a-4d6a-ac90-78a9574dfbcc + - 4fb819a5-11f9-4384-807a-049edfd275a4 status: 200 OK code: 200 duration: "" @@ -1307,10 +1307,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1319,7 +1319,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:55 GMT + - Wed, 18 Oct 2023 16:38:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1329,7 +1329,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18fcff78-85e1-4995-a0f3-13892d7e6d5f + - b5f3a89e-b45a-451d-8e97-e02f6a3bf0c8 status: 200 OK code: 200 duration: "" @@ -1340,10 +1340,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1352,7 +1352,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:00 GMT + - Wed, 18 Oct 2023 16:38:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1362,7 +1362,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45b59bb5-2f01-4d06-8a82-790b0b194d65 + - 6c0ad9aa-6cc9-4c5f-8a5c-50ef99b19f5d status: 200 OK code: 200 duration: "" @@ -1373,10 +1373,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1385,7 +1385,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:06 GMT + - Wed, 18 Oct 2023 16:38:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1395,7 +1395,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 950836ec-e213-4df2-b658-fac4914bfae1 + - 71494736-1a48-444a-8963-a9873dfedf62 status: 200 OK code: 200 duration: "" @@ -1406,10 +1406,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1418,7 +1418,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:11 GMT + - Wed, 18 Oct 2023 16:38:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1428,7 +1428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11117f21-ea6a-4a99-91dd-f58274448539 + - a017a3f1-5a67-44d1-8aaf-882638e9f03c status: 200 OK code: 200 duration: "" @@ -1439,10 +1439,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1451,7 +1451,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:16 GMT + - Wed, 18 Oct 2023 16:38:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1461,7 +1461,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 126ddefe-ceff-46bd-804e-18b8ba34ee8d + - 622fa1b5-4419-4c6b-ac06-3d27b651f680 status: 200 OK code: 200 duration: "" @@ -1472,10 +1472,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1484,7 +1484,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:21 GMT + - Wed, 18 Oct 2023 16:38:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1494,7 +1494,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54f1d7d4-0285-4516-8de7-d749c1d8cf00 + - 81b3c274-d824-470b-a4d9-9eb9d33feb2e status: 200 OK code: 200 duration: "" @@ -1505,10 +1505,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1517,7 +1517,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:26 GMT + - Wed, 18 Oct 2023 16:38:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1527,7 +1527,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cebfe03d-ae03-4951-9750-e7d44c5ecd01 + - 6a61b2da-848f-49de-a244-2ef566be1e70 status: 200 OK code: 200 duration: "" @@ -1538,10 +1538,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1550,7 +1550,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:31 GMT + - Wed, 18 Oct 2023 16:38:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1560,7 +1560,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82231362-2d84-4797-9cbe-6a2eaf71ed9f + - 89676d87-0e41-4505-b5c6-7d3f9a3a0fcb status: 200 OK code: 200 duration: "" @@ -1571,10 +1571,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1583,7 +1583,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:36 GMT + - Wed, 18 Oct 2023 16:38:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1593,7 +1593,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d60d07f5-c0f1-41ca-80d1-f294e5fd48f9 + - 67ac1082-97fa-4e64-bba8-793b69cbedfa status: 200 OK code: 200 duration: "" @@ -1604,10 +1604,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1616,7 +1616,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:41 GMT + - Wed, 18 Oct 2023 16:38:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1626,7 +1626,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4c20305-9f29-4b58-9375-37bb1524eb9b + - be27d99e-36dc-475f-9830-ac8324f07a91 status: 200 OK code: 200 duration: "" @@ -1637,10 +1637,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1649,7 +1649,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:46 GMT + - Wed, 18 Oct 2023 16:39:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1659,7 +1659,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 409b6c29-d6e3-4750-b681-de0fc7dadac3 + - d44fbaff-2479-4a8e-bdcf-6c9c74da8f79 status: 200 OK code: 200 duration: "" @@ -1670,10 +1670,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1682,7 +1682,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:51 GMT + - Wed, 18 Oct 2023 16:39:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1692,7 +1692,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bceb432-ffef-4901-942c-4b7c9c141515 + - 4c224916-e135-432b-a84e-432253215a6d status: 200 OK code: 200 duration: "" @@ -1703,10 +1703,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1715,7 +1715,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:56 GMT + - Wed, 18 Oct 2023 16:39:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1725,7 +1725,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c31a1ba4-aa02-46ae-ac8a-579dc51b6a97 + - e3a4cfa4-e5e7-460c-9f77-169d2d13e9ed status: 200 OK code: 200 duration: "" @@ -1736,10 +1736,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1748,7 +1748,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:01 GMT + - Wed, 18 Oct 2023 16:39:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1758,7 +1758,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c50cf0c9-dade-47d5-a379-51b74cb145f3 + - 4d9ea40a-f865-463c-9ffc-0c4e7622b9c5 status: 200 OK code: 200 duration: "" @@ -1769,10 +1769,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1781,7 +1781,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:06 GMT + - Wed, 18 Oct 2023 16:39:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1791,7 +1791,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6faa230a-1ff3-4ff0-b4f1-ef144081568e + - 690de7e4-48f9-4a4a-b52a-73ede66e8ee7 status: 200 OK code: 200 duration: "" @@ -1802,10 +1802,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1814,7 +1814,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:11 GMT + - Wed, 18 Oct 2023 16:39:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1824,7 +1824,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2402fa72-6b23-4093-ace6-08f402f6d4c4 + - e3fba92c-8109-446b-a97a-75f4590604ee status: 200 OK code: 200 duration: "" @@ -1835,10 +1835,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1847,7 +1847,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:16 GMT + - Wed, 18 Oct 2023 16:39:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1857,7 +1857,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8992b3a-a9d4-43b4-bc0c-d9cf9af7216e + - 6f2ea16e-00eb-4bb8-95e9-f7c340da43c4 status: 200 OK code: 200 duration: "" @@ -1868,10 +1868,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1880,7 +1880,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:21 GMT + - Wed, 18 Oct 2023 16:39:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1890,7 +1890,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 709d6404-8280-4b48-a479-926836455d04 + - 80e00c94-08db-4e0d-8499-e22e955dafce status: 200 OK code: 200 duration: "" @@ -1901,10 +1901,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1913,7 +1913,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:27 GMT + - Wed, 18 Oct 2023 16:39:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1923,7 +1923,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0d60517-1c8c-4ef7-ad47-e31725613db2 + - 56cf203b-cb5b-427e-89bb-1b4372fbf92f status: 200 OK code: 200 duration: "" @@ -1934,10 +1934,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1946,7 +1946,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:32 GMT + - Wed, 18 Oct 2023 16:39:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1956,7 +1956,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 015d31bf-4ebc-4f3b-a5b0-5f01f43ab4da + - 859dfd83-6117-42dc-8030-b99d7430ac76 status: 200 OK code: 200 duration: "" @@ -1967,10 +1967,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1979,7 +1979,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:37 GMT + - Wed, 18 Oct 2023 16:39:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1989,7 +1989,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 108d39c5-c1c9-4134-ac52-f5f0ed9602e5 + - 441d9726-9c99-4bdd-ab18-5b91d4e750cd status: 200 OK code: 200 duration: "" @@ -2000,10 +2000,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2012,7 +2012,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:42 GMT + - Wed, 18 Oct 2023 16:39:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2022,7 +2022,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbdbdd92-e587-410f-8c06-107654ebfec7 + - 5a217077-ed42-4724-8e57-f339948f245a status: 200 OK code: 200 duration: "" @@ -2033,10 +2033,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2045,7 +2045,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:47 GMT + - Wed, 18 Oct 2023 16:40:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2055,7 +2055,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8432a9d-2a28-40ee-a103-14f40ba24a0b + - de86e186-8787-40f9-ae22-f95d41aba434 status: 200 OK code: 200 duration: "" @@ -2066,10 +2066,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2078,7 +2078,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:52 GMT + - Wed, 18 Oct 2023 16:40:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2088,7 +2088,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 207ec143-0b9c-4a2b-9365-e2198fe7c0fc + - 8b683b53-e280-42fc-8b75-97bb308bea21 status: 200 OK code: 200 duration: "" @@ -2099,10 +2099,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2111,7 +2111,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:57 GMT + - Wed, 18 Oct 2023 16:40:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2121,7 +2121,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c162c558-b0c8-4e77-91c7-6ec86c938eee + - 6bcf776a-40fc-4c5b-87e7-5fdb57ab1f66 status: 200 OK code: 200 duration: "" @@ -2132,10 +2132,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2144,7 +2144,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:02 GMT + - Wed, 18 Oct 2023 16:40:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2154,7 +2154,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e326f72-b7ea-484b-85cb-b785b8c00b3d + - 2cdb2b8e-8bec-46b0-bc80-f8b99c7a16d7 status: 200 OK code: 200 duration: "" @@ -2165,10 +2165,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2177,7 +2177,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:07 GMT + - Wed, 18 Oct 2023 16:40:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2187,7 +2187,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a7800f6-04e9-424e-a70d-566b8d9770a8 + - bd85e133-d586-4f51-90b5-8621ff7013d4 status: 200 OK code: 200 duration: "" @@ -2198,10 +2198,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2210,7 +2210,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:12 GMT + - Wed, 18 Oct 2023 16:40:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2220,7 +2220,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1f6d122-cd6d-4a5c-b4be-a9cdc1fb1197 + - a702151b-6243-44cf-b94a-e4c7b4ecda7e status: 200 OK code: 200 duration: "" @@ -2231,10 +2231,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2243,7 +2243,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:17 GMT + - Wed, 18 Oct 2023 16:40:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2253,7 +2253,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d2b2478-9a67-46ce-ad2c-1f88eb1826bb + - 743a6c57-6c46-4c52-a78d-7195b441ebe1 status: 200 OK code: 200 duration: "" @@ -2264,10 +2264,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2276,7 +2276,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:22 GMT + - Wed, 18 Oct 2023 16:40:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2286,7 +2286,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2925dfb9-8458-44a4-b17f-cccd26670bb4 + - 0530dc58-0eaf-448e-b891-546c840d0827 status: 200 OK code: 200 duration: "" @@ -2297,10 +2297,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2309,7 +2309,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:27 GMT + - Wed, 18 Oct 2023 16:40:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2319,7 +2319,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44550aec-3126-491b-a5dd-7a7a8c71f469 + - c78f18c2-f400-4543-9477-9dbc3bdc7173 status: 200 OK code: 200 duration: "" @@ -2330,10 +2330,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2342,7 +2342,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:33 GMT + - Wed, 18 Oct 2023 16:40:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2352,7 +2352,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1b1dfaf-2e6f-455a-b000-856f51d9b32c + - 66278999-5b9e-4130-8339-1bfa487a0ac3 status: 200 OK code: 200 duration: "" @@ -2363,10 +2363,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2375,7 +2375,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:38 GMT + - Wed, 18 Oct 2023 16:40:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2385,7 +2385,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c45e9f25-82d4-452b-8b63-24c85cde2828 + - 29d43962-8a32-4fe4-9c6f-04cbaeb61d24 status: 200 OK code: 200 duration: "" @@ -2396,10 +2396,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2408,7 +2408,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:43 GMT + - Wed, 18 Oct 2023 16:40:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2418,7 +2418,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adbe367b-d1c8-4cac-8387-ca169c967722 + - 339e0f6a-4c0c-48d5-aedd-e2dcfc503315 status: 200 OK code: 200 duration: "" @@ -2429,10 +2429,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2441,7 +2441,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:48 GMT + - Wed, 18 Oct 2023 16:41:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2451,7 +2451,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65d7d087-f3d5-459e-ad03-2572b4f718d0 + - e079ed7b-5e29-4dc6-b8d3-6ba3791e536a status: 200 OK code: 200 duration: "" @@ -2462,10 +2462,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2474,7 +2474,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:53 GMT + - Wed, 18 Oct 2023 16:41:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2484,7 +2484,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cc093ee-6265-44e1-8635-8d02a3e93c8e + - 0ad555d0-e198-4368-aec8-9b7a789cab66 status: 200 OK code: 200 duration: "" @@ -2495,10 +2495,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:35.551210Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2507,7 +2507,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:58 GMT + - Wed, 18 Oct 2023 16:41:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2517,7 +2517,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7451a3e4-4b3f-462c-b414-63e07d22d8a5 + - f00c44ed-9510-4dd2-b8d8-525aff0cc21c status: 200 OK code: 200 duration: "" @@ -2528,10 +2528,736 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:00.773257Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:41:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cd8bf8c2-59cd-4039-aa73-487bb878b3e2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:41:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0775f953-0524-4059-b32c-8512b41d844d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:41:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f3d7697-b24a-4a23-b537-ab7bb029338b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:41:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7fbc6abc-d250-4a89-b391-59f6d770eeeb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:41:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 173c04bd-6166-47e0-928f-e29badadaccc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:41:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 670d8466-931a-4f22-9f31-1f52630bcb6c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:41:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b99b74d4-0217-4561-aaaa-820dd331fce5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:41:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2378dc35-b6d9-4109-9d8b-1931d91604e3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:41:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2ccb708-5da2-4cb8-b7db-5d1acc0daa92 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:04 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8fd2c19d-bfaf-433c-9294-1a5ac0f182f6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:09 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d998d9a4-014d-46f9-902c-809e78f27c33 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b0c2a9b9-9b50-4b72-9202-76f4ba5b78f4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ee30207-a858-40d0-86ee-f58484712bfe + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:24 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ffe90ff1-42cd-4b3a-8872-ea0306c852a4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1787ae50-ced4-478c-9341-5b2be8582597 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d47da4c-6292-4062-8b9f-b1809acd442d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - efe2e5e6-79a1-4606-ad7a-16889b7040ca + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2dd72e7-4c6a-4cfd-89c4-1a7f898dc748 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d5a5dd8-08be-4d19-ba74-1b04622aea32 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 829d298d-1714-41e2-ba84-e905d5aae4f0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 75d70850-3733-49a3-b664-0669872f2ca9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:51.621827Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:04 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 75fa07e4-e674-4098-ad2c-c2f2cd887744 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-18T16:43:08.656484Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "613" @@ -2540,7 +3266,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:03 GMT + - Wed, 18 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2550,7 +3276,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57b0c208-3e03-4867-94cf-f726d88661fc + - d2399593-4e58-44cb-86e6-5ef53a09a741 status: 200 OK code: 200 duration: "" @@ -2561,10 +3287,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:01:47.076155Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:37:27.996002Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1512" @@ -2573,7 +3299,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:03 GMT + - Wed, 18 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2583,7 +3309,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad647344-7399-434c-af2e-210f4c8bfc21 + - 0bf9bdce-d7fd-4efc-9134-275607d2de72 status: 200 OK code: 200 duration: "" @@ -2594,10 +3320,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:00.773257Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-18T16:43:08.656484Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "613" @@ -2606,7 +3332,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:03 GMT + - Wed, 18 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2616,7 +3342,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae06da03-b9bf-4075-ad17-0ce1cdc5c1ef + - de12a0fc-62ba-4489-be57-bbc392d65461 status: 200 OK code: 200 duration: "" @@ -2627,19 +3353,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0/nodes?order_by=created_at_asc&page=1&pool_id=a55d8611-3f97-40c4-b5a4-d91c18563eb1&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd/nodes?order_by=created_at_asc&page=1&pool_id=33ebe8a5-5a0e-434c-b810-8ca79b112bb2&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T10:02:02.428672Z","error_message":null,"id":"c33a95d3-bc1d-43c3-9478-7d8711d22501","name":"scw-test-k8s-private-network-pool-c33a95d3bc1d","pool_id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","provider_id":"scaleway://instance/fr-par-1/020aac93-1f70-45b0-99d6-2eecab578686","public_ip_v4":"51.15.230.205","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:00.750598Z"},{"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T10:02:06.579272Z","error_message":null,"id":"baedc2f5-761c-42b9-ad94-dd1764317526","name":"scw-test-k8s-private-network-pool-baedc2f5761c","pool_id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","provider_id":"scaleway://instance/fr-par-1/b62cf172-f0f8-44f4-bcdc-b21dd2b51b7f","public_ip_v4":"51.15.130.6","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:00.732418Z"}],"total_count":2}' + body: '{"nodes":[{"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:44.552790Z","error_message":null,"id":"1b3de83f-72e3-4d31-8872-7f367b6538f0","name":"scw-test-k8s-private-network-pool-1b3de83f72e3","pool_id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","provider_id":"scaleway://instance/fr-par-1/a6263eb5-6438-45bb-8837-77372945bfbb","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:08.622910Z"},{"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:48.635392Z","error_message":null,"id":"e275788d-a03d-41c2-8da2-64bee196e618","name":"scw-test-k8s-private-network-pool-e275788da03d","pool_id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","provider_id":"scaleway://instance/fr-par-1/0a195f8b-16c4-44be-bf92-20f9dbe96b7a","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:08.642932Z"}],"total_count":2}' headers: Content-Length: - - "1287" + - "1319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:03 GMT + - Wed, 18 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2649,7 +3375,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - daa1ff81-7c74-4c84-8cfa-375f50521a31 + - 9c92b2bb-7e13-47ac-b160-c6a916d617b8 status: 200 OK code: 200 duration: "" @@ -2660,10 +3386,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:01:47.076155Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:37:27.996002Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1512" @@ -2672,7 +3398,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:03 GMT + - Wed, 18 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2682,7 +3408,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd70ed21-28e2-4155-9e58-2bb034a50d4e + - 534266f0-c31a-41fc-843b-47758222ee21 status: 200 OK code: 200 duration: "" @@ -2693,19 +3419,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e1f48ed1-d58d-4356-bfb7-008999e09424 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c20560a7-d092-404a-8418-8aa95095399c method: GET response: - body: '{"created_at":"2023-10-17T10:00:26.823509Z","dhcp_enabled":true,"id":"e1f48ed1-d58d-4356-bfb7-008999e09424","name":"test-k8s-private-network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-17T10:00:26.823509Z","id":"20b5b50d-163e-4be2-b01f-ca935435f68a","subnet":"172.16.144.0/22","updated_at":"2023-10-17T10:00:26.823509Z"},{"created_at":"2023-10-17T10:00:26.823509Z","id":"2b912cae-2275-4920-bf14-6af21b9ae09f","subnet":"fd5f:519c:6d46:cd31::/64","updated_at":"2023-10-17T10:00:26.823509Z"}],"tags":[],"updated_at":"2023-10-17T10:00:26.823509Z","vpc_id":"b8f09300-a08c-467d-bf66-2a1cf2752f2f"}' + body: '{"created_at":"2023-10-18T16:35:45.258962Z","dhcp_enabled":true,"id":"c20560a7-d092-404a-8418-8aa95095399c","name":"test-k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:45.258962Z","id":"d146def6-a138-4e37-9ef7-f074dadbd5e5","subnet":"172.16.20.0/22","updated_at":"2023-10-18T16:35:45.258962Z"},{"created_at":"2023-10-18T16:35:45.258962Z","id":"eafe12c9-2714-4f1c-a76f-2ad3b9be8208","subnet":"fd63:256c:45f7:4f62::/64","updated_at":"2023-10-18T16:35:45.258962Z"}],"tags":[],"updated_at":"2023-10-18T16:35:45.258962Z","vpc_id":"89dac298-df98-45a1-8871-4b918eb86a0c"}' headers: Content-Length: - - "726" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:03 GMT + - Wed, 18 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2715,7 +3441,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 506711b7-3694-483b-a645-f928cf7ed646 + - 8bb15225-d620-4855-ab46-c11ca2505304 status: 200 OK code: 200 duration: "" @@ -2726,10 +3452,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:00.773257Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-18T16:43:08.656484Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "613" @@ -2738,7 +3464,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:03 GMT + - Wed, 18 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2748,7 +3474,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33c71076-8cb5-4f0a-8efa-7748f7bc2d5b + - 58c194d9-d611-4e86-a7bc-e4b34a048e0c status: 200 OK code: 200 duration: "" @@ -2759,10 +3485,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:01:47.076155Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:37:27.996002Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1512" @@ -2771,7 +3497,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:03 GMT + - Wed, 18 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2781,7 +3507,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e3a8192-797b-4d22-b418-4f6ff0bcfff9 + - 3579ca77-ed96-4009-867e-543edf79cce9 status: 200 OK code: 200 duration: "" @@ -2792,19 +3518,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0/nodes?order_by=created_at_asc&pool_id=a55d8611-3f97-40c4-b5a4-d91c18563eb1&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd/nodes?order_by=created_at_asc&pool_id=33ebe8a5-5a0e-434c-b810-8ca79b112bb2&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T10:02:02.428672Z","error_message":null,"id":"c33a95d3-bc1d-43c3-9478-7d8711d22501","name":"scw-test-k8s-private-network-pool-c33a95d3bc1d","pool_id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","provider_id":"scaleway://instance/fr-par-1/020aac93-1f70-45b0-99d6-2eecab578686","public_ip_v4":"51.15.230.205","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:00.750598Z"},{"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T10:02:06.579272Z","error_message":null,"id":"baedc2f5-761c-42b9-ad94-dd1764317526","name":"scw-test-k8s-private-network-pool-baedc2f5761c","pool_id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","provider_id":"scaleway://instance/fr-par-1/b62cf172-f0f8-44f4-bcdc-b21dd2b51b7f","public_ip_v4":"51.15.130.6","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:00.732418Z"}],"total_count":2}' + body: '{"nodes":[{"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:44.552790Z","error_message":null,"id":"1b3de83f-72e3-4d31-8872-7f367b6538f0","name":"scw-test-k8s-private-network-pool-1b3de83f72e3","pool_id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","provider_id":"scaleway://instance/fr-par-1/a6263eb5-6438-45bb-8837-77372945bfbb","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:08.622910Z"},{"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:48.635392Z","error_message":null,"id":"e275788d-a03d-41c2-8da2-64bee196e618","name":"scw-test-k8s-private-network-pool-e275788da03d","pool_id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","provider_id":"scaleway://instance/fr-par-1/0a195f8b-16c4-44be-bf92-20f9dbe96b7a","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:08.642932Z"}],"total_count":2}' headers: Content-Length: - - "1287" + - "1319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:04 GMT + - Wed, 18 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2814,7 +3540,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa648302-a30e-4271-a763-f08c5f33dcd5 + - 4c47a1de-20d2-4c60-9133-7fb1e0b62712 status: 200 OK code: 200 duration: "" @@ -2825,23 +3551,23 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/020aac93-1f70-45b0-99d6-2eecab578686 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a6263eb5-6438-45bb-8837-77372945bfbb method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-10-17T10:02:03.151039+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-k8s-private-network-pool-c33a95d3bc1d","id":"020aac93-1f70-45b0-99d6-2eecab578686","image":{"arch":"x86_64","creation_date":"2023-10-05T10:50:51.838301+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"8795d4a3-0918-41f3-b119-03a7effbdd8f","modification_date":"2023-10-05T11:06:46.734414+00:00","name":"k8s_base_node_2023-09-27.6","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"23e4a5ca-9587-4556-8eee-34cafe7b43cc","name":"k8s_base_node_2023-09-27.6","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:610:5905::1","gateway":"2001:bc8:610:5905::","netmask":"64"},"location":{"cluster_id":"51","hypervisor_id":"104","node_id":"6","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:23:01","maintenances":[],"modification_date":"2023-10-17T10:02:46.174281+00:00","name":"scw-test-k8s-private-network-pool-c33a95d3bc1d","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.194.77.11","private_nics":[{"creation_date":"2023-10-17T10:02:03.839711+00:00","id":"3225d35d-62e0-4d14-b843-50f23c87fcd1","mac_address":"02:00:00:14:45:31","modification_date":"2023-10-17T10:02:05.180596+00:00","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","server_id":"020aac93-1f70-45b0-99d6-2eecab578686","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.230.205","dynamic":true,"family":"inet","gateway":null,"id":"a62ebce8-d6a6-47ae-aa4f-6733160cb1bd","netmask":"32","provisioning_mode":"dhcp","tags":[]},"public_ips":[{"address":"51.15.230.205","dynamic":true,"family":"inet","gateway":null,"id":"a62ebce8-d6a6-47ae-aa4f-6733160cb1bd","netmask":"32","provisioning_mode":"dhcp","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"aeba7168-a0fd-445b-a8e9-b92b6b5ebc15","name":"kubernetes - 6c379c76-848b-44b5-83de-03ba6d07e5d0"},"state":"running","state_detail":"booting - kernel","tags":["kapsule=6c379c76-848b-44b5-83de-03ba6d07e5d0","pool=a55d8611-3f97-40c4-b5a4-d91c18563eb1","pool-name=pool","runtime=containerd","managed=true","node=c33a95d3-bc1d-43c3-9478-7d8711d22501"],"volumes":{"0":{"boot":false,"creation_date":"2023-10-17T10:02:03.151039+00:00","export_uri":null,"id":"25515109-a312-47c4-a212-3342d74db1b1","modification_date":"2023-10-17T10:02:03.151039+00:00","name":"k8s_base_node_2023-09-27.6","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"020aac93-1f70-45b0-99d6-2eecab578686","name":"scw-test-k8s-private-network-pool-c33a95d3bc1d"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-10-18T16:37:45.284301+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-k8s-private-network-pool-1b3de83f72e3","id":"a6263eb5-6438-45bb-8837-77372945bfbb","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:63c:2004::1","gateway":"2001:bc8:63c:2004::","netmask":"64"},"location":{"cluster_id":"29","hypervisor_id":"1701","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:5d:29","maintenances":[],"modification_date":"2023-10-18T16:38:00.912730+00:00","name":"scw-test-k8s-private-network-pool-1b3de83f72e3","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.66.82.9","private_nics":[{"creation_date":"2023-10-18T16:37:46.006952+00:00","id":"b7e614ed-9dff-47b2-9c0b-53d3bcdc4717","mac_address":"02:00:00:14:4d:27","modification_date":"2023-10-18T16:37:46.753827+00:00","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","server_id":"a6263eb5-6438-45bb-8837-77372945bfbb","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.230.101","dynamic":true,"family":"inet","gateway":null,"id":"457a53e4-b04b-4487-a43a-6aedb768c100","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.230.101","dynamic":true,"family":"inet","gateway":null,"id":"457a53e4-b04b-4487-a43a-6aedb768c100","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"e67f0208-18dd-44d8-9411-360e694a1be5","name":"kubernetes + 8e5066b6-c900-4851-8e01-76feb9e34acd"},"state":"running","state_detail":"booting + kernel","tags":["kapsule=8e5066b6-c900-4851-8e01-76feb9e34acd","pool=33ebe8a5-5a0e-434c-b810-8ca79b112bb2","pool-name=pool","runtime=containerd","managed=true","node=1b3de83f-72e3-4d31-8872-7f367b6538f0"],"volumes":{"0":{"boot":false,"creation_date":"2023-10-18T16:37:45.284301+00:00","export_uri":null,"id":"9eb429bb-b3fd-430d-8315-70572443b0f3","modification_date":"2023-10-18T16:37:45.284301+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"a6263eb5-6438-45bb-8837-77372945bfbb","name":"scw-test-k8s-private-network-pool-1b3de83f72e3"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3910" + - "3951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:04 GMT + - Wed, 18 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2851,7 +3577,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da13407e-8f58-4c46-9acf-dce1c1e5a552 + - 2b7bead0-ec70-4891-ba0e-65d812714422 status: 200 OK code: 200 duration: "" @@ -2862,23 +3588,23 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b62cf172-f0f8-44f4-bcdc-b21dd2b51b7f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0a195f8b-16c4-44be-bf92-20f9dbe96b7a method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-10-17T10:02:08.197198+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-k8s-private-network-pool-baedc2f5761c","id":"b62cf172-f0f8-44f4-bcdc-b21dd2b51b7f","image":{"arch":"x86_64","creation_date":"2023-10-05T10:50:51.838301+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"8795d4a3-0918-41f3-b119-03a7effbdd8f","modification_date":"2023-10-05T11:06:46.734414+00:00","name":"k8s_base_node_2023-09-27.6","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"23e4a5ca-9587-4556-8eee-34cafe7b43cc","name":"k8s_base_node_2023-09-27.6","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:660:1c07::1","gateway":"2001:bc8:660:1c07::","netmask":"64"},"location":{"cluster_id":"90","hypervisor_id":"801","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:23:03","maintenances":[],"modification_date":"2023-10-17T10:02:27.535874+00:00","name":"scw-test-k8s-private-network-pool-baedc2f5761c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.66.255.15","private_nics":[{"creation_date":"2023-10-17T10:02:09.256939+00:00","id":"5107ea58-5a8c-4d6c-8bdc-69d92834d1c9","mac_address":"02:00:00:14:45:32","modification_date":"2023-10-17T10:02:10.283275+00:00","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","server_id":"b62cf172-f0f8-44f4-bcdc-b21dd2b51b7f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.130.6","dynamic":true,"family":"inet","gateway":null,"id":"eff566e1-112b-4d09-9a20-1460d8726bef","netmask":"32","provisioning_mode":"dhcp","tags":[]},"public_ips":[{"address":"51.15.130.6","dynamic":true,"family":"inet","gateway":null,"id":"eff566e1-112b-4d09-9a20-1460d8726bef","netmask":"32","provisioning_mode":"dhcp","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"aeba7168-a0fd-445b-a8e9-b92b6b5ebc15","name":"kubernetes - 6c379c76-848b-44b5-83de-03ba6d07e5d0"},"state":"running","state_detail":"booting - kernel","tags":["kapsule=6c379c76-848b-44b5-83de-03ba6d07e5d0","pool=a55d8611-3f97-40c4-b5a4-d91c18563eb1","pool-name=pool","runtime=containerd","managed=true","node=baedc2f5-761c-42b9-ad94-dd1764317526"],"volumes":{"0":{"boot":false,"creation_date":"2023-10-17T10:02:08.197198+00:00","export_uri":null,"id":"a69b5910-b6f9-4928-8d8b-2c66af9ebdbb","modification_date":"2023-10-17T10:02:08.197198+00:00","name":"k8s_base_node_2023-09-27.6","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"b62cf172-f0f8-44f4-bcdc-b21dd2b51b7f","name":"scw-test-k8s-private-network-pool-baedc2f5761c"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-10-18T16:37:49.013800+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-k8s-private-network-pool-e275788da03d","id":"0a195f8b-16c4-44be-bf92-20f9dbe96b7a","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:4748:2302::1","gateway":"2001:bc8:4748:2302::","netmask":"64"},"location":{"cluster_id":"3","hypervisor_id":"1802","node_id":"3","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:5d:2b","maintenances":[],"modification_date":"2023-10-18T16:38:09.457502+00:00","name":"scw-test-k8s-private-network-pool-e275788da03d","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.12.156.197","private_nics":[{"creation_date":"2023-10-18T16:37:50.005085+00:00","id":"23871bdb-185d-4617-af12-ea3a6b2d8e50","mac_address":"02:00:00:14:4d:28","modification_date":"2023-10-18T16:37:50.846602+00:00","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","server_id":"0a195f8b-16c4-44be-bf92-20f9dbe96b7a","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.143.114","dynamic":true,"family":"inet","gateway":null,"id":"37d573b3-feb6-4fcb-b0ad-699a6299a21e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.143.114","dynamic":true,"family":"inet","gateway":null,"id":"37d573b3-feb6-4fcb-b0ad-699a6299a21e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"e67f0208-18dd-44d8-9411-360e694a1be5","name":"kubernetes + 8e5066b6-c900-4851-8e01-76feb9e34acd"},"state":"running","state_detail":"booting + kernel","tags":["kapsule=8e5066b6-c900-4851-8e01-76feb9e34acd","pool=33ebe8a5-5a0e-434c-b810-8ca79b112bb2","pool-name=pool","runtime=containerd","managed=true","node=e275788d-a03d-41c2-8da2-64bee196e618"],"volumes":{"0":{"boot":false,"creation_date":"2023-10-18T16:37:49.013800+00:00","export_uri":null,"id":"5f52a11d-75e8-420f-88c7-78d36fcbbd39","modification_date":"2023-10-18T16:37:49.013800+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"0a195f8b-16c4-44be-bf92-20f9dbe96b7a","name":"scw-test-k8s-private-network-pool-e275788da03d"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3906" + - "3955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:04 GMT + - Wed, 18 Oct 2023 16:43:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2888,7 +3614,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40417efa-7473-4439-8e28-f8d8cef04a46 + - be55aefd-e857-46b9-8f00-c72e1b891100 status: 200 OK code: 200 duration: "" @@ -2899,10 +3625,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8f09300-a08c-467d-bf66-2a1cf2752f2f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/89dac298-df98-45a1-8871-4b918eb86a0c method: GET response: - body: '{"created_at":"2023-10-17T10:00:25.714559Z","id":"b8f09300-a08c-467d-bf66-2a1cf2752f2f","is_default":false,"name":"test-k8s-private-network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","tags":[],"updated_at":"2023-10-17T10:00:25.714559Z"}' + body: '{"created_at":"2023-10-18T16:35:44.902018Z","id":"89dac298-df98-45a1-8871-4b918eb86a0c","is_default":false,"name":"test-k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","tags":[],"updated_at":"2023-10-18T16:35:44.902018Z"}' headers: Content-Length: - "356" @@ -2911,7 +3637,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:05 GMT + - Wed, 18 Oct 2023 16:43:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2921,7 +3647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80dd040a-26a7-4401-9e5e-7d2eb2e189a4 + - f10605a3-deb1-483f-9064-3e73a5fb77a1 status: 200 OK code: 200 duration: "" @@ -2932,19 +3658,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e1f48ed1-d58d-4356-bfb7-008999e09424 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c20560a7-d092-404a-8418-8aa95095399c method: GET response: - body: '{"created_at":"2023-10-17T10:00:26.823509Z","dhcp_enabled":true,"id":"e1f48ed1-d58d-4356-bfb7-008999e09424","name":"test-k8s-private-network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-17T10:00:26.823509Z","id":"20b5b50d-163e-4be2-b01f-ca935435f68a","subnet":"172.16.144.0/22","updated_at":"2023-10-17T10:00:26.823509Z"},{"created_at":"2023-10-17T10:00:26.823509Z","id":"2b912cae-2275-4920-bf14-6af21b9ae09f","subnet":"fd5f:519c:6d46:cd31::/64","updated_at":"2023-10-17T10:00:26.823509Z"}],"tags":[],"updated_at":"2023-10-17T10:00:26.823509Z","vpc_id":"b8f09300-a08c-467d-bf66-2a1cf2752f2f"}' + body: '{"created_at":"2023-10-18T16:35:45.258962Z","dhcp_enabled":true,"id":"c20560a7-d092-404a-8418-8aa95095399c","name":"test-k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:45.258962Z","id":"d146def6-a138-4e37-9ef7-f074dadbd5e5","subnet":"172.16.20.0/22","updated_at":"2023-10-18T16:35:45.258962Z"},{"created_at":"2023-10-18T16:35:45.258962Z","id":"eafe12c9-2714-4f1c-a76f-2ad3b9be8208","subnet":"fd63:256c:45f7:4f62::/64","updated_at":"2023-10-18T16:35:45.258962Z"}],"tags":[],"updated_at":"2023-10-18T16:35:45.258962Z","vpc_id":"89dac298-df98-45a1-8871-4b918eb86a0c"}' headers: Content-Length: - - "726" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:05 GMT + - Wed, 18 Oct 2023 16:43:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2954,7 +3680,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8528d9eb-c461-4f8b-9f85-966daeadca43 + - 3c591f3d-c85f-425a-88ba-117e96cc599c status: 200 OK code: 200 duration: "" @@ -2965,10 +3691,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:01:47.076155Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:37:27.996002Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1512" @@ -2977,7 +3703,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:05 GMT + - Wed, 18 Oct 2023 16:43:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2987,7 +3713,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebe8db89-03dd-4b47-bec2-707619a6dc3f + - b08e52c5-6021-4599-b61a-6d751df778b6 status: 200 OK code: 200 duration: "" @@ -2998,10 +3724,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXByaXZhdGUtbmV0d29yayIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWM1RVUkJlazFXYjFoRVZFMTZUVlJCZUU1cVJYZE5SRUY2VFZadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJURmN3Q2toT2ExRlVjak0xUlVWS1FtUTVXSEJFUVhwMmQweFlibWRuU3k5dFFrbENia2w0YzJ4b1ptMUNXRE15ZVZCV1dqWkNZMkZhZGxGTlVUUllUeXN6WjBrS2FVWlVWRkF4VkZOUVlWaENXbFp4V0ZKamFqRjRVVEJDVFhoQ05IbHViMGxMU0dSTmNFbG1TVVZIY25KSlowRlNaRW80WXpFd2NVOXJVVWRUVmxaeWN3cHlhbXBoZDNaeWIyRXhiMUZsWTJwSVJYZzBSR05WU0N0RVoxSnVjRzQxVDBKMWIyRXpNM1Z3Y1VsalVtdEdaRUYzZFhsbFVtbG5ORTAyYkdJM1JGaGFDbFowYm5kTlFrbFJjell4ZDFwTlExZDRSbFV4U21rNVVWUmFaV0V2V0dkdk5tVlVURmczU0VOMGVIYzNValJHVVZwWFQwNXdSbEZUZURFeU4yZHlNazhLVGpKSGVXVlRjREZFY2xORFRuSjFjMmx3WWt4clJYUmlVRVZZUVRBd1MxQkdSMVZOYUdrMGREa3hjR2c0ZW1nMGQyTXdjVTVxT0c5eVJWcGhhems1ZUFwc2JrZEphbUp1TmpoellXaDBWbmt2ZERSTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTlNrVnNTVzR5U0d4NU4wcEdlbGRMYkRKak16Vm5OSFp4Vm1aTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFNVZDVRelZwVEVoTlFYbElhRXhoWW14d2FHcERRVVExYjJaeVVWbEVkakp5UkZGcVprOTVWVEY2WkZkWmJuTm1hZ280UnpKM1NqaEdWbFpRUWtwR1EzTTRPVzB4WjJwdmEwWnVlaTlYTUhKSVdqVXdhME4yVUhjdmVsUTBVRGRPU1VzeVJIb3hNVWhhZUc1UVNYaE1jaXQyQ2xOamNXSjRSRnBUT1c4cmNWQkdMekoxZWl0dFJFcHdNamhUTUUxMVEydHpSV2M1TWtvdk1VVnZVWGRQYnpaQ1kwSTFlREphUjJKUVZsTklZVzFsUkRNS1ZEbGtkRkF6V0ZKc1IyTlBTRWRaTjFaWGJIWnNlRGR3ZW5SV1ZtTlFTRFJMTDJGb1NreHNaRkI2UkVWUk1ubHFRWGxSZDIxUlEybGhVV0ZYWW1wa1FRb3JiM2cyTDNCdFZrVm1NV05NUjFVek5taFBObTQxVTFGUlpYQk5MMjFVVEhKa1JsTXdiV05KUmsxUlMwbFlTR2QxVWxsVWEwaFlabE4zVFZabGF5dHNDamRVTVRKR1ZqSTBhekE1ZFVzNFRHdzVXRWxaYjFwck5GZzVRemREVEVKVmR5OW5NZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNmMzNzljNzYtODQ4Yi00NGI1LTgzZGUtMDNiYTZkMDdlNWQwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXByaXZhdGUtbmV0d29yawogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrIgogICAgdXNlcjogdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBMZU1iWkxQb1FIdXM4VzQxMXVhdXJzMzU3c3d5cDRYQVJha0ZERDhPS0RQZkp2SkxhVHU3dEFJSA==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXByaXZhdGUtbmV0d29yayIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRYcFZNRTR4YjFoRVZFMTZUVlJCZUU1NlJUSk5lbFV3VGpGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTbTR5Q2toelNsTTFXbWxpTjI1cE9XWjRla0UyYUU5TVMxbHZiR2RSTHpsM2JuRjZjamhZVDJjcmJuUXlabU5CYVRscU9EQnZkamhUZUVwRE9WZG1Rek5YWjNjS1dXSnRWVVVyU0RNNFNUSTNPVEpGWjBObmVqRTBZbmwzWlRaUGNFeFBSemR3U0ZZeGExbENUSEZJU0cwNFRYWmxZa3d6WVZobk9XaEZhbkZ1WjBkNE9RcHdSV0pQVFdSRFFUVmFUMjQyVVVoVFozWjBNbFpETHpCMVRGVTRVV2x4ZVRocU5TdGtWV0o0WWxaNFdqVnBRblphV1VJeFZ5dGtSMDh6TnpJNWFYSXdDbXR2TWxOVFlVaDFTVFZXV2tsWGVVd3pOVlZGVWtGVmFUaGFTMjgzT1dWdWFUVlVhRzF0VTB4eGRXRkhXalJTT1RZM1psRldVVkpoZUhFMVJXVjVZVmdLYkVaWk1sbGlLM0ptYkVWUU5IWkVTR3hET0hRMGJsRmpTRFkwZW5ONVdsUk5WaXR3TkVWMk1uYzJNbTFXVDBZdmRrOVdObVF4UTNrNGVuUmtWM2xQWkFwV1dHWTJMMlpwUm5GYVRrYzNMeXRQV25oelEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaQ1pGaDFXRWd4WXk5d1pXMVFWRTE2UVhadmIxQldVR1pIYlZKTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1lqZ3pOWEp1Tmpkd2NqTjVOazR4YVVWdmVuSlZSRWRTY0M5bGFHVXZPVlZXVG5OdGJHeFZjWGh1T1cxSk5qQkNid3A0VkRSYVNEZG1OVUppWkM5bWJFOTBOR0ozU0hjemVqbGlkRVpzVjFSUFFXVlFlVmhGT1VkNlV6Snlka3MwUjBSb1pFUTRNMDFUU21SVk5HRndVVzQ1Q21SQ1ZtbGhjRVp2TVRkRFRXRlJSWGhHUldoeGRrY3JhMXB6VkRKb1pYZHZUM1psWldoNlJUWkdWV1F2WWtreWNYVllTRUUzYUZSTk1EZEdZV3AzZUd3S1QzVTViWGxLYkdKbWJqRkhSSG8xY0RScmRsQm9jRUV4V0dJeWVrbGFaMXBhWVVGNFVFb3lXVVV2WlVsUlRGUlZOaTgwWjBVdmJWaGpSazVHYTJoQmRncHRUelJFU1RKVk9XSjJSSEJNTDFVekwyeEJUM05PUjA1cWQxWlZUVnBpVG14d1ZXdEtkR3Q1WkUxbGVUQnVZbmwxVVRsS01VWjBWVmt3VTJOTFZXWlZDbWs0UWxWblV6RnJlVEJ0YW5CWVZYazVZbGhFVTJObFdYcHNUVU01V0RSamVHTTJXUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vOGU1MDY2YjYtYzkwMC00ODUxLThlMDEtNzZmZWI5ZTM0YWNkLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXByaXZhdGUtbmV0d29yawogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrIgogICAgdXNlcjogdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHJpdmF0ZS1uZXR3b3JrLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB3REJPM3pYZE1oV3YxakNySm85NEt2TlZZYncxZTBLS3M1RGpGYUs0TE8zSjlKeEczNFRnNlVwWA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - "2686" @@ -3010,7 +3736,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:05 GMT + - Wed, 18 Oct 2023 16:43:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3020,7 +3746,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28ab9858-5dd6-4381-becf-72d1ee72ef53 + - 457b56bc-0911-4757-8d0b-b881f514a9cc status: 200 OK code: 200 duration: "" @@ -3031,10 +3757,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:00.773257Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-18T16:43:08.656484Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "613" @@ -3043,7 +3769,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:05 GMT + - Wed, 18 Oct 2023 16:43:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3053,7 +3779,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68829037-6beb-4c70-8696-fe1a379830a4 + - 9fa998b0-cb69-411b-a079-82e8b021e0f1 status: 200 OK code: 200 duration: "" @@ -3064,19 +3790,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0/nodes?order_by=created_at_asc&page=1&pool_id=a55d8611-3f97-40c4-b5a4-d91c18563eb1&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd/nodes?order_by=created_at_asc&page=1&pool_id=33ebe8a5-5a0e-434c-b810-8ca79b112bb2&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T10:02:02.428672Z","error_message":null,"id":"c33a95d3-bc1d-43c3-9478-7d8711d22501","name":"scw-test-k8s-private-network-pool-c33a95d3bc1d","pool_id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","provider_id":"scaleway://instance/fr-par-1/020aac93-1f70-45b0-99d6-2eecab578686","public_ip_v4":"51.15.230.205","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:00.750598Z"},{"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T10:02:06.579272Z","error_message":null,"id":"baedc2f5-761c-42b9-ad94-dd1764317526","name":"scw-test-k8s-private-network-pool-baedc2f5761c","pool_id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","provider_id":"scaleway://instance/fr-par-1/b62cf172-f0f8-44f4-bcdc-b21dd2b51b7f","public_ip_v4":"51.15.130.6","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:00.732418Z"}],"total_count":2}' + body: '{"nodes":[{"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:44.552790Z","error_message":null,"id":"1b3de83f-72e3-4d31-8872-7f367b6538f0","name":"scw-test-k8s-private-network-pool-1b3de83f72e3","pool_id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","provider_id":"scaleway://instance/fr-par-1/a6263eb5-6438-45bb-8837-77372945bfbb","public_ip_v4":"51.15.230.101","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:08.622910Z"},{"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:48.635392Z","error_message":null,"id":"e275788d-a03d-41c2-8da2-64bee196e618","name":"scw-test-k8s-private-network-pool-e275788da03d","pool_id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","provider_id":"scaleway://instance/fr-par-1/0a195f8b-16c4-44be-bf92-20f9dbe96b7a","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:08.642932Z"}],"total_count":2}' headers: Content-Length: - - "1287" + - "1319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:05 GMT + - Wed, 18 Oct 2023 16:43:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3086,7 +3812,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa43abc5-cdf8-4acb-8526-271cbe3c7833 + - 3cef031d-18e1-49ef-91d2-b9c036c0929c status: 200 OK code: 200 duration: "" @@ -3097,10 +3823,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a55d8611-3f97-40c4-b5a4-d91c18563eb1 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/33ebe8a5-5a0e-434c-b810-8ca79b112bb2 method: DELETE response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","container_runtime":"containerd","created_at":"2023-10-17T10:00:35.544239Z","id":"a55d8611-3f97-40c4-b5a4-d91c18563eb1","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"deleting","tags":[],"updated_at":"2023-10-17T10:06:07.276585467Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.613769Z","id":"33ebe8a5-5a0e-434c-b810-8ca79b112bb2","kubelet_args":{},"max_size":2,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"deleting","tags":[],"updated_at":"2023-10-18T16:43:12.830499629Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "619" @@ -3109,7 +3835,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:07 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3119,7 +3845,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 686ba847-7f87-434e-b204-1c2e6a2c8c1e + - bfc1c7ab-cb14-4c51-b6b5-c104b0682257 status: 200 OK code: 200 duration: "" @@ -3130,10 +3856,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd?with_additional_resources=true method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:06:07.425625841Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:43:12.903497784Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1518" @@ -3142,7 +3868,73 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:07 GMT + - Wed, 18 Oct 2023 16:43:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5f1e8894-cd4f-4039-a11b-5fe2c8f68a7d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:43:12.903498Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1515" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4bad264f-9c68-4068-98ab-a3c44845c8cd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:43:12.903498Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1515" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3152,7 +3944,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f8e7ada-3750-46f9-ab3e-fb2018ddeb48 + - 1009f2d0-0ce3-4944-9db3-f746307ca74b status: 200 OK code: 200 duration: "" @@ -3163,10 +3955,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:06:07.425626Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:43:12.903498Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1515" @@ -3175,7 +3967,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:07 GMT + - Wed, 18 Oct 2023 16:43:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3185,7 +3977,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4db426b1-7126-44c5-93f7-ba87aed6d0ab + - ddaa6e9c-4784-40d5-9029-402071373f9a status: 200 OK code: 200 duration: "" @@ -3196,10 +3988,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:06:07.425626Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:43:12.903498Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1515" @@ -3208,7 +4000,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:12 GMT + - Wed, 18 Oct 2023 16:43:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3218,7 +4010,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d96e6de-7952-4b12-9f2d-7972d6311569 + - 58a07b77-d466-4e4e-9d07-6cbba024324e status: 200 OK code: 200 duration: "" @@ -3229,10 +4021,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:06:07.425626Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:43:12.903498Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1515" @@ -3241,7 +4033,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:17 GMT + - Wed, 18 Oct 2023 16:43:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3251,7 +4043,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16abee31-8642-4d4a-b349-715f37808466 + - aa58a1bc-496b-4c5d-8ff4-d7a9e86aedb4 status: 200 OK code: 200 duration: "" @@ -3262,10 +4054,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://6c379c76-848b-44b5-83de-03ba6d07e5d0.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:29.814691Z","created_at":"2023-10-17T10:00:29.814691Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.6c379c76-848b-44b5-83de-03ba6d07e5d0.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-17T10:06:07.425626Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8e5066b6-c900-4851-8e01-76feb9e34acd.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:46.197356Z","created_at":"2023-10-18T16:35:46.197356Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8e5066b6-c900-4851-8e01-76feb9e34acd.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8e5066b6-c900-4851-8e01-76feb9e34acd","ingress":"none","name":"test-k8s-private-network","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"c20560a7-d092-404a-8418-8aa95095399c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T16:43:12.903498Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1515" @@ -3274,7 +4066,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:22 GMT + - Wed, 18 Oct 2023 16:43:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3284,7 +4076,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b08cf07e-41e3-46b5-ae3b-9e9fe4bf0423 + - f3f423c5-1f76-4c69-b0fd-c98063c975c7 status: 200 OK code: 200 duration: "" @@ -3295,10 +4087,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","type":"not_found"}' headers: Content-Length: - "128" @@ -3307,7 +4099,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:28 GMT + - Wed, 18 Oct 2023 16:43:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3317,7 +4109,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3181ed42-17cb-41f9-8b5e-82c4c79daa95 + - 778fb3d8-7ae5-4745-9a41-2111d5b0c1bf status: 404 Not Found code: 404 duration: "" @@ -3328,10 +4120,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e1f48ed1-d58d-4356-bfb7-008999e09424 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c20560a7-d092-404a-8418-8aa95095399c method: DELETE response: - body: '{"message":"resource is not found","resource":"private_network","resource_id":"e1f48ed1-d58d-4356-bfb7-008999e09424","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"c20560a7-d092-404a-8418-8aa95095399c","type":"not_found"}' headers: Content-Length: - "136" @@ -3340,7 +4132,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:28 GMT + - Wed, 18 Oct 2023 16:43:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3350,7 +4142,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92cadf44-4a87-4ff3-9b0a-1d59ee75f713 + - 842f6bbb-71c6-4450-9292-4efe7d316b89 status: 404 Not Found code: 404 duration: "" @@ -3361,7 +4153,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8f09300-a08c-467d-bf66-2a1cf2752f2f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/89dac298-df98-45a1-8871-4b918eb86a0c method: DELETE response: body: "" @@ -3371,7 +4163,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:28 GMT + - Wed, 18 Oct 2023 16:43:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3381,7 +4173,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d2b3a86-03f7-4dda-90a2-7c90456dba11 + - c660d94b-5430-4cfc-9909-a15b39fbaa7e status: 204 No Content code: 204 duration: "" @@ -3392,10 +4184,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/6c379c76-848b-44b5-83de-03ba6d07e5d0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8e5066b6-c900-4851-8e01-76feb9e34acd method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"6c379c76-848b-44b5-83de-03ba6d07e5d0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"8e5066b6-c900-4851-8e01-76feb9e34acd","type":"not_found"}' headers: Content-Length: - "128" @@ -3404,7 +4196,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:28 GMT + - Wed, 18 Oct 2023 16:43:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3414,7 +4206,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2f75642-cbe3-43a7-9070-fafb025a6b9b + - 382c22bd-da1b-4f9c-bd9d-f31c5f921550 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-pool-public-ip-disabled.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-public-ip-disabled.cassette.yaml index 0c63c27896..48cffad072 100644 --- a/scaleway/testdata/k8s-cluster-pool-public-ip-disabled.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-pool-public-ip-disabled.cassette.yaml @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:08:48 GMT + - Wed, 18 Oct 2023 17:05:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,7 +34,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa0d414a-5b66-421e-bc2a-5768ccf1b420 + - 3ecd5d24-6060-4627-bd39-496dfaddc5e2 status: 200 OK code: 200 duration: "" @@ -50,16 +50,16 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"created_at":"2023-10-17T13:08:50.414671Z","dhcp_enabled":true,"id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-17T13:08:50.414671Z","id":"093f01a1-07bc-4e3f-8fa7-5482a1c3f341","subnet":"172.16.0.0/22","updated_at":"2023-10-17T13:08:50.414671Z"},{"created_at":"2023-10-17T13:08:50.414671Z","id":"ea92eda5-047f-45f5-b1ed-80e8492fcfed","subnet":"fd63:256c:45f7:b55e::/64","updated_at":"2023-10-17T13:08:50.414671Z"}],"tags":[],"updated_at":"2023-10-17T13:08:50.414671Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2023-10-18T17:05:38.963133Z","dhcp_enabled":true,"id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:05:38.963133Z","id":"b6f618ae-5f6f-4745-acbc-66e1cba782d7","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:05:38.963133Z"},{"created_at":"2023-10-18T17:05:38.963133Z","id":"385347c4-de12-4c0f-ab0e-d6fc33b70b07","subnet":"fd63:256c:45f7:2b74::/64","updated_at":"2023-10-18T17:05:38.963133Z"}],"tags":[],"updated_at":"2023-10-18T17:05:38.963133Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "718" + - "719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:08:51 GMT + - Wed, 18 Oct 2023 17:05:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +69,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 404d7f84-bc36-4ef3-b420-20ec75e70f76 + - 7cedf7c1-2395-444d-b0c8-2a4e21eeab57 status: 200 OK code: 200 duration: "" @@ -80,19 +80,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd139a05-39cf-4f92-9011-a67c8fda9c81 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b27b50b7-86ff-406e-b08b-de82de78fe7a method: GET response: - body: '{"created_at":"2023-10-17T13:08:50.414671Z","dhcp_enabled":true,"id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-17T13:08:50.414671Z","id":"093f01a1-07bc-4e3f-8fa7-5482a1c3f341","subnet":"172.16.0.0/22","updated_at":"2023-10-17T13:08:50.414671Z"},{"created_at":"2023-10-17T13:08:50.414671Z","id":"ea92eda5-047f-45f5-b1ed-80e8492fcfed","subnet":"fd63:256c:45f7:b55e::/64","updated_at":"2023-10-17T13:08:50.414671Z"}],"tags":[],"updated_at":"2023-10-17T13:08:50.414671Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2023-10-18T17:05:38.963133Z","dhcp_enabled":true,"id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:05:38.963133Z","id":"b6f618ae-5f6f-4745-acbc-66e1cba782d7","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:05:38.963133Z"},{"created_at":"2023-10-18T17:05:38.963133Z","id":"385347c4-de12-4c0f-ab0e-d6fc33b70b07","subnet":"fd63:256c:45f7:2b74::/64","updated_at":"2023-10-18T17:05:38.963133Z"}],"tags":[],"updated_at":"2023-10-18T17:05:38.963133Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "718" + - "719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:08:51 GMT + - Wed, 18 Oct 2023 17:05:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,12 +102,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 830ee89c-d3aa-4fd8-baf9-5e1fd5f0088a + - aeb1b729-415a-472b-82fe-f6ae96fd802c status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-k8s-public-ip","description":"","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81"}' + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-k8s-public-ip","description":"","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a"}' form: {} headers: Content-Type: @@ -118,7 +118,7 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936218Z","created_at":"2023-10-17T13:08:51.541936218Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:08:51.558842181Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898375Z","created_at":"2023-10-18T17:05:41.115898375Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:05:41.140239460Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1512" @@ -127,7 +127,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:08:51 GMT + - Wed, 18 Oct 2023 17:05:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -137,7 +137,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9b60d87-392e-4fe7-9b65-3d7e18fb0d19 + - 3e102854-6489-4137-8bd8-441ece73279d status: 200 OK code: 200 duration: "" @@ -148,10 +148,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:08:51.558842Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:05:41.140239Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1503" @@ -160,7 +160,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:08:51 GMT + - Wed, 18 Oct 2023 17:05:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -170,7 +170,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce836689-0f70-4add-b6e7-f047be60a45c + - 6628d45e-d04f-4b5a-9fad-b896f8072c99 status: 200 OK code: 200 duration: "" @@ -181,10 +181,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:08:53.456158Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:05:42.599796Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1508" @@ -193,7 +193,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:08:56 GMT + - Wed, 18 Oct 2023 17:05:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -203,7 +203,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 604d58cd-8e99-4a9a-b73e-144ca8c7708b + - fb75c4b6-1f4c-48d0-94be-f7d6f3945f35 status: 200 OK code: 200 duration: "" @@ -214,10 +214,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:08:53.456158Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:05:42.599796Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1508" @@ -226,7 +226,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:08:56 GMT + - Wed, 18 Oct 2023 17:05:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -236,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dca1ce6-8835-4462-a3da-c6332779f252 + - bb431f16-fb90-443c-a6c9-05b6e2b2ba59 status: 200 OK code: 200 duration: "" @@ -247,10 +247,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWNlRVUm5NVTB4YjFoRVZFMTZUVlJCZUU1cVJYcE5SR2N4VFRGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUR1kzQ2xkb1RubFdRbk5HUTFKa2RFa3hTRUZpVW1rMWVtaGpUMnN6UzJkc1dIQXlRMjh5TW1adWIyNDBabFpVUWpoTFoxUTJiV0ZvUjFkMGJrdDRWMEZETDNvS1prSnpZMFZJTTNKV09HRXZXWFJHY1hKclZGa3pPRVYxZEhFd1RraHZZWFVyZVdZM01FVXdZWFpvYkhONlltMHdTbnBoTXpOeVJIQlRhMUpZY0hObGVBcFBSbmRqVkRrelRFdzVPRWQ1WTJndlpuRTBUV1pQWm1kR1lXaDVOV3d6VlZaR09Dc3ZRVEEyUnpFMFNXVklkVlZPTW01RVVGTkZOM0puY0dsWldGWXpDa2w0T1dneGVWVlRUVkpoV1dsRU4ydFpSelZ0YW14UmJYZHNhRVJ2TUM5VVpFMTZXbEJKZW5GV1UyVnVLM0pOUkZFelVHeExRMUYzSzJ0SVJHRXhWbkFLU25wT1dVRmpOREUyWmt0VE1rSk9WREpHYUVOdVIxVTBORTl0Ymt4Vk1UWlRNR3ROUlhaNVNXRlhjR2wwU2twU1MwaFpRa3RCUTNObUwxSkxhbGhKZVFwM1pESnhaVXBwTkM5c1JXb3JlbEppU2l0elEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRVREQkZMM1F6WjFGTlMwUlRNM0ZtV25CaldHVkhVRWxwYkZwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFR6UjNjV0ZvTW5CWk5qSjJSRE5pZGxNek9WaHVSRmt3YW5kd1JHTjNkaTlQZG0xNFZVUlFXblJvUjFCVVpFcHJOUXByTmtGTlRHb3hWRmN3UjI4MFJHUXhUVlpsZURONlMybHJkM05HVG5WcGJVTkdXVGw0VDBOM1drOXFTR0pwWWpSNlVYVXhjVVYxVUdoWGJtRkNaVGxhQ2xaaWEzbENOR1Y0ZGpWblowcGxUMnQyT1ZGNU9XWnFTM1pNYVZkaE4wTXZiMk41VGtkWldqWXhXRlkzVW14c2FFWjRjVkJpVkZoclZuZDRXRXRPZVc0S1VtbzVZVlpZT1VWdmJsTmtaRk5XY2pCTU5UTjZkMkp2UmpsQlRIQXdNRlpYT0VaSFNsRnVTbGN4T0doTlNYTjJWWFJOYmxaeFdGSTBkMlpGUzJaUE1ncGthVWQ2YzNkYWNFSTJWazlKY3pGQk4xbGxlVzluYm5CVE1rWjFZbXRDVW5SRFVERkNjR2RWUnpCQ1NuVTBVekZQU0RaNFYwcHhaa0pxUVhjd01XNUhDamR5V0VoWlIzbG9NRnBXV2twR1lreDVORWs0UVZvelRrcEVPVFJKUlVacU5rVmxkQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDRiZmNlOWUtZjU3NS00ZWY1LWE2YWEtN2YxMjk5MjIyMTNhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBCZWl3aUFWNFFDbkFaT1JtcUNDMTFYQUJ4aE1jRURlM0pWVWx4Y2s1VmJDWlFqSE56aHg4UExFYg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVelRVUlZNRTFzYjFoRVZFMTZUVlJCZUU1NlJUTk5SRlV3VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMjl4Q2xrNFNIaDRhR3M1UkVreE56TjNZMGd4ZVRnemMzcFhiWFpFZDJ0d2FrOVhVRXhxTDFwa05scEZjSE5FWlRoalpVMVNOVUZYUWxwNVExWjFaRUpXVUhrS1VXWlFUVXRQUTNkRGQwRjFaekJpVldFelIwZE1UREZoVldkWFUwd3dlbkZRY0dsTGRtMUxTRXhtTkV4cVVHcE1VRGxaZUdKTFYyMWFPRGRXVjBVelRncEJRM3B0VTNGQk9VYzJNa1U1UjFGNVJYWkhRbHBJWW1sWksza3lkV0pLVVhWQmJHbFpSMG94ZUZNMVVWbGxhRTFSU25GSFJIQXhSMDg1ZDJSeU5VZHlDbmc1TDJKdmVqQmpPR3Q2TmxoT1NucFZSblJOZUU0NFpEQXZaVlZwUjBNMmFTdHBSMU5GVFU0eWEwUkhjVW8yTW1NMU4yaDJXbk40UTJZek1HUTFVbXNLWjB0NFQwRXpaVWhLVFVwNFQyMXpabEJLUjNoUVFubDJVR1FyU2tkaVJuUlZkME5SVkhkbVluTnFTSGRuSzFOYVJXczRSVkl2U0RsdlJVbHRWa3hyZUFwbFFtazNTMUUwSzIxRmVVWTVNelU0WVZjd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUGJUWTRTbUZsWm1GclZWUm9SMDR2UkhFMVIwNUtWVXBNV1VoTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmNFeDBaVnBFWm1veFMyeDVkV3hIV1U5SmJrbDNlRlpDZVhFM1RYQnRZa3gyUVRkeFNFcFNTaTg1YUV4emRWSkpWd3ByUVRaUVVVZHBhemRVYzJGdFQwUlVOU3Q0ZDBRck1rY3daRzB5Vm5KSlkyRkdSVzAyYjJJNVpHeDNiRkJ2WjFwRU1rZFBTVFo1UVVWcVdWZFdiWFpqQ20xeGEweEpaRGR6UkRWb01EbHVURmhoVGt4aFZUbHRZblYyT1d3MGFXbExPVmw0VFcxQk1WQlJUbUptUjBOTGJYbHVPREpoYVVsTU9XMTBiRkFyYUVnS1VIcFZNbVp5TmxkemNTOU9ibEo1VkZOaWIyZ3haVkJ5TmpOV2JGazVkazk2YkROTWVVUnlaMnR1UldnNFFVaHpVVGxvYlRaVUx6aFBXR2xTUzBjNGNRbzRiV2xMVHk5eFprMW5NWFZzZVRJMmNuZFBiV1ZVVmk5TVdITktNbmRCUldJeU5rTndXR3hMZEdWWVYyc3phRGxDVUVSYVlYcG1TMGh2WTNWNWFWbHVDbFZJU1ROdVIzTTNUQzlvWVhaeVF6QkhUVkYwZVdzNFIydFBkbU5vVDJOQk4zQjZVd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNGY4MmY5MzYtMTg5Zi00NmMzLWIwNjMtZTdiMmFmMDUxYzc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBDT2FQVE5idURiSFpYY3pBbDhKWTN6R29UeTZFeXlWWjNPMkE3YXBpWE1TVm9MclhFaThkdmR5SA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - "2638" @@ -259,7 +259,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:08:56 GMT + - Wed, 18 Oct 2023 17:05:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,7 +269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0d40392-7462-4ba3-ac50-19532c0b253d + - a21e120f-94ba-4de0-b665-f6d6a75955d1 status: 200 OK code: 200 duration: "" @@ -280,10 +280,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:08:53.456158Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:05:42.599796Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - "1508" @@ -292,7 +292,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:08:56 GMT + - Wed, 18 Oct 2023 17:05:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +302,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71cdb603-0cbc-43ef-97a2-33734e2a6a15 + - 6fd375f8-90ef-4eb8-897b-437436be0f73 status: 200 OK code: 200 duration: "" @@ -315,10 +315,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/pools + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/pools method: POST response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051886645Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023240Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "618" @@ -327,7 +327,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:08:57 GMT + - Wed, 18 Oct 2023 17:05:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -337,7 +337,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba809ab3-796d-45fc-91b3-e5e50bd0fe71 + - a55d4c98-0bdc-41e4-98d3-9c3d0df3bd35 status: 200 OK code: 200 duration: "" @@ -348,10 +348,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -360,7 +360,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:08:57 GMT + - Wed, 18 Oct 2023 17:05:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -370,7 +370,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 178f9676-f2cc-4a5e-837b-4697a268c5df + - 4bb11c14-e36c-478b-8cdf-49149636ace9 status: 200 OK code: 200 duration: "" @@ -381,10 +381,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -393,7 +393,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:02 GMT + - Wed, 18 Oct 2023 17:05:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -403,7 +403,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d776709-869e-4af4-a2d1-4335f77b3b2b + - bd6b6da3-f207-4ae3-8d0f-0a4b1417d0b0 status: 200 OK code: 200 duration: "" @@ -414,10 +414,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -426,7 +426,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:07 GMT + - Wed, 18 Oct 2023 17:05:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -436,7 +436,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8188fa86-8ad0-4bfa-8674-ff318357ca71 + - ebc7b7da-4980-4067-b703-a0a7278acd00 status: 200 OK code: 200 duration: "" @@ -447,10 +447,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -459,7 +459,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:12 GMT + - Wed, 18 Oct 2023 17:06:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -469,7 +469,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4daf784b-267b-45bc-826d-36b455824973 + - 27a24607-2270-410a-8fc5-829d1905e084 status: 200 OK code: 200 duration: "" @@ -480,10 +480,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -492,7 +492,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:17 GMT + - Wed, 18 Oct 2023 17:06:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -502,7 +502,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1852354a-2072-4bd9-9702-c6a125dd8958 + - e8489fb2-21be-4bf9-a936-6bdaa88b88a2 status: 200 OK code: 200 duration: "" @@ -513,10 +513,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -525,7 +525,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:22 GMT + - Wed, 18 Oct 2023 17:06:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab63d804-0dd3-4a7b-aba8-253efaf7bd22 + - ef50bc70-3d79-4f4a-b015-d3119b019331 status: 200 OK code: 200 duration: "" @@ -546,10 +546,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -558,7 +558,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:27 GMT + - Wed, 18 Oct 2023 17:06:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 164b2128-e9dd-4fe5-a632-759088905f49 + - dc5126d5-11a8-4654-9175-bede62c08b30 status: 200 OK code: 200 duration: "" @@ -579,10 +579,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -591,7 +591,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:32 GMT + - Wed, 18 Oct 2023 17:06:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72e47359-2582-4759-82de-5dd2bf36626d + - 46ae4210-0429-4838-809a-8e505aebbc1b status: 200 OK code: 200 duration: "" @@ -612,10 +612,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -624,7 +624,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:37 GMT + - Wed, 18 Oct 2023 17:06:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,7 +634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf7cfb15-f641-4e1e-8308-d2ecc71fe7a4 + - 1cd877d9-c801-45d5-916d-8adad45b3f3e status: 200 OK code: 200 duration: "" @@ -645,10 +645,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -657,7 +657,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:42 GMT + - Wed, 18 Oct 2023 17:06:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -667,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad3c648c-d065-4835-92c2-050930177c3b + - f8016693-c84a-4c0e-bbf1-06d0cdfa1881 status: 200 OK code: 200 duration: "" @@ -678,10 +678,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -690,7 +690,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:47 GMT + - Wed, 18 Oct 2023 17:06:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -700,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d1b15f2-a5a4-4855-a527-14b3c28f2944 + - b574c48d-ae8d-4ac2-973b-cdbb1ea3dc2d status: 200 OK code: 200 duration: "" @@ -711,10 +711,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -723,7 +723,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:52 GMT + - Wed, 18 Oct 2023 17:06:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -733,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8e535c5-5c22-42a1-9fa9-d0101227bcd7 + - 2827d773-8f46-414e-868b-9643cc8e0c4b status: 200 OK code: 200 duration: "" @@ -744,10 +744,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -756,7 +756,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:09:58 GMT + - Wed, 18 Oct 2023 17:06:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -766,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bdf7d03-86e0-4305-b3e1-81c9729044f2 + - ea5a9fb0-13ce-4222-a083-3b4c0f53735d status: 200 OK code: 200 duration: "" @@ -777,10 +777,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -789,7 +789,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:10:03 GMT + - Wed, 18 Oct 2023 17:06:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -799,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a9a8fff-3adf-491b-ac4d-5d5419248e53 + - 558eaadb-c601-4d59-980d-b031b47fad8d status: 200 OK code: 200 duration: "" @@ -810,10 +810,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -822,7 +822,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:10:08 GMT + - Wed, 18 Oct 2023 17:06:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -832,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b14bf0b3-e955-48ec-bc16-50a74905dc73 + - 19715e64-a203-4b24-9f1b-7d84fd4480db status: 200 OK code: 200 duration: "" @@ -843,10 +843,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -855,7 +855,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:10:13 GMT + - Wed, 18 Oct 2023 17:07:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -865,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a344bd5-9938-4a7a-b2ef-d65ba7eb0aea + - 868dd098-9cd8-4a6c-a9e6-4211b2068e7a status: 200 OK code: 200 duration: "" @@ -876,10 +876,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -888,7 +888,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:10:19 GMT + - Wed, 18 Oct 2023 17:07:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -898,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a170508-6284-4f73-9256-d7d1df594803 + - 11ac4ddc-3b2d-4e7b-8cfc-52ff3a15d331 status: 200 OK code: 200 duration: "" @@ -909,10 +909,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -921,7 +921,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:10:24 GMT + - Wed, 18 Oct 2023 17:07:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -931,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94c86358-36e3-469a-90ca-3c74f182ad73 + - ec54dc1a-f734-418e-ba1c-929bb0a1e4f3 status: 200 OK code: 200 duration: "" @@ -942,10 +942,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -954,7 +954,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:10:29 GMT + - Wed, 18 Oct 2023 17:07:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -964,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a3b6b20-1cf5-4967-847b-dedaa0eaa4fb + - 18324213-21c6-4ccb-b682-533a3b34d634 status: 200 OK code: 200 duration: "" @@ -975,10 +975,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -987,7 +987,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:10:35 GMT + - Wed, 18 Oct 2023 17:07:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -997,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 695867eb-f7f2-4b64-a86c-70f422b41215 + - 5bf95a41-23aa-45ba-ba41-218e2e9f1f5f status: 200 OK code: 200 duration: "" @@ -1008,10 +1008,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1020,7 +1020,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:10:40 GMT + - Wed, 18 Oct 2023 17:07:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1030,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c60de491-2c50-40c3-a20f-37eff77206e6 + - a27de1a2-e448-40cc-abad-37db10e02b50 status: 200 OK code: 200 duration: "" @@ -1041,10 +1041,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:10:45 GMT + - Wed, 18 Oct 2023 17:07:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1063,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80f38bfe-4751-42e7-a8c5-3c1a0fa7e8fa + - 7a6efe89-5e9f-40c3-9fb7-b1113ff4d7ad status: 200 OK code: 200 duration: "" @@ -1074,10 +1074,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1086,7 +1086,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:10:50 GMT + - Wed, 18 Oct 2023 17:07:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1096,7 +1096,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f097b67-1aea-48d9-95d5-3f622b6dd8f5 + - 6b34b9c2-4bf6-43e9-bea3-9d2d65233fb5 status: 200 OK code: 200 duration: "" @@ -1107,10 +1107,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1119,7 +1119,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:10:55 GMT + - Wed, 18 Oct 2023 17:07:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1129,7 +1129,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d7df932-10eb-4eb6-9a96-b4c9e7d8cddc + - 89c7f824-6b61-4fc5-9bd3-8efb5ff3feaa status: 200 OK code: 200 duration: "" @@ -1140,10 +1140,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1152,7 +1152,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:00 GMT + - Wed, 18 Oct 2023 17:07:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1162,7 +1162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d4a9cc8-f374-48c2-bd86-15dcc76102fd + - 0f2635aa-71f9-492c-a6c9-b58c009bb22c status: 200 OK code: 200 duration: "" @@ -1173,10 +1173,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1185,7 +1185,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:05 GMT + - Wed, 18 Oct 2023 17:07:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1195,7 +1195,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0c91b88-555e-4753-98e1-f7aef4cf49fc + - e4b65398-82ba-4e92-a553-bb95d64b2139 status: 200 OK code: 200 duration: "" @@ -1206,10 +1206,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1218,7 +1218,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:10 GMT + - Wed, 18 Oct 2023 17:07:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1228,7 +1228,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1931022f-23e7-4728-9aa6-6d81baf37d57 + - 7aac0461-2a0b-40bc-b861-88441c8664d1 status: 200 OK code: 200 duration: "" @@ -1239,10 +1239,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1251,7 +1251,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:15 GMT + - Wed, 18 Oct 2023 17:08:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1261,7 +1261,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 287c7e20-30e3-4fe2-9f6f-cd917a586f03 + - 6af2a62f-c35a-4774-bad6-3bdb98f69688 status: 200 OK code: 200 duration: "" @@ -1272,10 +1272,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1284,7 +1284,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:20 GMT + - Wed, 18 Oct 2023 17:08:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1294,7 +1294,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 293c3b58-8f7f-4753-ae7c-f2271bb9c049 + - 6e335d4f-7aa4-45e1-929d-51ef1e790587 status: 200 OK code: 200 duration: "" @@ -1305,10 +1305,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1317,7 +1317,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:25 GMT + - Wed, 18 Oct 2023 17:08:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1327,7 +1327,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f992a58-34a3-40f5-847f-19f39b5dc4a0 + - d6c28c26-6719-4c0c-a716-9e49ae8f8fbc status: 200 OK code: 200 duration: "" @@ -1338,10 +1338,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1350,7 +1350,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:30 GMT + - Wed, 18 Oct 2023 17:08:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1360,7 +1360,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 537720a3-b0ca-43c1-8404-84fab0dfba6e + - 2503d640-1a58-4275-93ed-de07572c003b status: 200 OK code: 200 duration: "" @@ -1371,10 +1371,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1383,7 +1383,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:36 GMT + - Wed, 18 Oct 2023 17:08:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1393,7 +1393,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4b4f990-d32f-479e-88a3-7c2f4b519314 + - cccc9d5f-eb85-4dbe-a2bb-d5278e698b07 status: 200 OK code: 200 duration: "" @@ -1404,10 +1404,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1416,7 +1416,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:41 GMT + - Wed, 18 Oct 2023 17:08:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1426,7 +1426,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27d3809b-86a7-4f2c-925c-6a738f81bedc + - e0dd433d-a5dd-4a4b-ab93-858f6033e30b status: 200 OK code: 200 duration: "" @@ -1437,10 +1437,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1449,7 +1449,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:46 GMT + - Wed, 18 Oct 2023 17:08:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1459,7 +1459,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47c2d62b-44e4-4c04-913b-fed4e3e6ea38 + - 051abe80-5c90-4676-9cbf-1193f2e697dd status: 200 OK code: 200 duration: "" @@ -1470,10 +1470,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1482,7 +1482,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:51 GMT + - Wed, 18 Oct 2023 17:08:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1492,7 +1492,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 391dd7b7-77ba-4a09-abec-d4b60898932c + - 72122f67-9729-47a6-bc83-fd5d17404c31 status: 200 OK code: 200 duration: "" @@ -1503,10 +1503,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1515,7 +1515,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:11:56 GMT + - Wed, 18 Oct 2023 17:08:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1525,7 +1525,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 075f0930-0553-4fdc-a39b-2c3113ae5970 + - 67a3b502-c1b4-401e-813a-52fcad781165 status: 200 OK code: 200 duration: "" @@ -1536,10 +1536,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1548,7 +1548,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:01 GMT + - Wed, 18 Oct 2023 17:08:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1558,7 +1558,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fa03891-9ae2-49cb-9863-1dfc82c4fde2 + - cacc7880-414b-4154-8a22-ac08c58a59a7 status: 200 OK code: 200 duration: "" @@ -1569,10 +1569,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1581,7 +1581,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:06 GMT + - Wed, 18 Oct 2023 17:08:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1591,7 +1591,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23ae48e2-f826-45ac-918f-f0f39c7202b3 + - 2ee74077-ddaa-4d66-8d5f-8f89d081e98d status: 200 OK code: 200 duration: "" @@ -1602,10 +1602,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1614,7 +1614,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:11 GMT + - Wed, 18 Oct 2023 17:08:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1624,7 +1624,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfe3e840-bb6f-4617-b02c-1012ef6b69b8 + - b0c48f15-fde2-48a6-bfe0-97d82c90da0a status: 200 OK code: 200 duration: "" @@ -1635,10 +1635,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1647,7 +1647,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:16 GMT + - Wed, 18 Oct 2023 17:09:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1657,7 +1657,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00c6082b-d338-4690-85be-bef11900bca0 + - 6c93439e-54cd-461a-a22a-6dbd18f105f8 status: 200 OK code: 200 duration: "" @@ -1668,10 +1668,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1680,7 +1680,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:21 GMT + - Wed, 18 Oct 2023 17:09:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1690,7 +1690,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00d3625e-bf8c-4823-8037-c611dbdcac87 + - 7fcbbe9e-b2b3-479a-86aa-4ceb4cfceabe status: 200 OK code: 200 duration: "" @@ -1701,10 +1701,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1713,7 +1713,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:26 GMT + - Wed, 18 Oct 2023 17:09:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1723,7 +1723,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4c5245d-4d9d-4b19-9997-7e405b5fb445 + - a43bada0-ac98-4fab-94ff-02f4e957c5de status: 200 OK code: 200 duration: "" @@ -1734,10 +1734,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1746,7 +1746,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:31 GMT + - Wed, 18 Oct 2023 17:09:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1756,7 +1756,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abf5d6ed-60df-4b95-82f0-e1d0f86b4c3c + - 0e9c5fc4-17d3-4b60-8bae-8b2bc88aad37 status: 200 OK code: 200 duration: "" @@ -1767,10 +1767,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1779,7 +1779,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:36 GMT + - Wed, 18 Oct 2023 17:09:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1789,7 +1789,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55210211-7565-452b-a68b-c44bee22c8ff + - cd903c57-0442-4554-aef5-9441f3f75faa status: 200 OK code: 200 duration: "" @@ -1800,10 +1800,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1812,7 +1812,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:41 GMT + - Wed, 18 Oct 2023 17:09:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1822,7 +1822,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f463283-2d46-4cee-9901-8b6a66bebec2 + - 487f231d-42d1-4cda-8935-4e9f6d00ea10 status: 200 OK code: 200 duration: "" @@ -1833,10 +1833,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1845,7 +1845,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:46 GMT + - Wed, 18 Oct 2023 17:09:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1855,7 +1855,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88aa525e-f7ac-4c11-902b-6e2d79957fd4 + - 01e9cc8d-b560-4edf-9b89-d4fbd77ee0dc status: 200 OK code: 200 duration: "" @@ -1866,10 +1866,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1878,7 +1878,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:52 GMT + - Wed, 18 Oct 2023 17:09:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1888,7 +1888,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 558f065a-cd54-4d5a-b591-1287318c563d + - 90a8e22b-519a-4b87-afb6-b191b717bd72 status: 200 OK code: 200 duration: "" @@ -1899,10 +1899,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1911,7 +1911,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:12:57 GMT + - Wed, 18 Oct 2023 17:09:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1921,7 +1921,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7332e08-34ba-47fb-9345-08cb65742f33 + - 697b6e77-ff08-459c-908c-2be713b27d0f status: 200 OK code: 200 duration: "" @@ -1932,10 +1932,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1944,7 +1944,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:02 GMT + - Wed, 18 Oct 2023 17:09:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1954,7 +1954,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 638ae17e-4183-42f0-9a47-095eabc9529a + - 3015b73d-fe3e-4308-874d-dd1ea23f4edc status: 200 OK code: 200 duration: "" @@ -1965,10 +1965,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1977,7 +1977,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:07 GMT + - Wed, 18 Oct 2023 17:09:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1987,7 +1987,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c302a2f5-0331-4149-a00e-9c91c888934b + - 5588f131-576e-4af5-938d-9c4fb832741e status: 200 OK code: 200 duration: "" @@ -1998,10 +1998,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2010,7 +2010,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:12 GMT + - Wed, 18 Oct 2023 17:09:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2020,7 +2020,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d58f58d1-e309-4a66-8dfb-7a47e8bb3b33 + - ef7d52f7-8b54-43e2-abe2-b2dc01d3ae46 status: 200 OK code: 200 duration: "" @@ -2031,10 +2031,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2043,7 +2043,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:17 GMT + - Wed, 18 Oct 2023 17:10:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2053,7 +2053,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99a85957-d751-485c-8c80-0e392e22d6a4 + - 42a25927-9c88-47cc-b051-d1eb966a9af4 status: 200 OK code: 200 duration: "" @@ -2064,10 +2064,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2076,7 +2076,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:22 GMT + - Wed, 18 Oct 2023 17:10:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2086,7 +2086,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ab7492e-1832-4e1e-a992-ddb39598611f + - 57b79431-ebc0-4ebe-b180-2ff2bc33eab1 status: 200 OK code: 200 duration: "" @@ -2097,10 +2097,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2109,7 +2109,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:27 GMT + - Wed, 18 Oct 2023 17:10:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2119,7 +2119,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7636fd8b-938e-4059-b5dc-0369a4131359 + - f0849fff-3e62-4e00-b92d-c6155f03b0c3 status: 200 OK code: 200 duration: "" @@ -2130,10 +2130,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2142,7 +2142,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:32 GMT + - Wed, 18 Oct 2023 17:10:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2152,7 +2152,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 376b4bec-77b6-4d31-aa83-1471cd808c7b + - eea3d03f-87ff-41ee-a522-f337ca676d99 status: 200 OK code: 200 duration: "" @@ -2163,10 +2163,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2175,7 +2175,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:39 GMT + - Wed, 18 Oct 2023 17:10:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2185,7 +2185,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 222cacb7-6f6b-4a98-a8c1-722676038006 + - ba8674e8-dfb6-44f3-94d5-3d8b2d29699e status: 200 OK code: 200 duration: "" @@ -2196,10 +2196,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2208,7 +2208,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:44 GMT + - Wed, 18 Oct 2023 17:10:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2218,7 +2218,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dd84438-a507-407e-98e3-d327f04b5904 + - 447e1d8e-d6a4-498b-a682-98e5cc4aa53f status: 200 OK code: 200 duration: "" @@ -2229,10 +2229,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2241,7 +2241,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:49 GMT + - Wed, 18 Oct 2023 17:10:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2251,7 +2251,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adbaa004-d063-4bd4-86e4-5396099716e7 + - 002e9974-23fb-4d39-826f-4c2d3edfca93 status: 200 OK code: 200 duration: "" @@ -2262,10 +2262,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2274,7 +2274,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:54 GMT + - Wed, 18 Oct 2023 17:10:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2284,7 +2284,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24ca318b-64a5-448d-aa7e-a4373ff6d1b2 + - fe872541-374e-4c2e-91fa-fb3f1bd62965 status: 200 OK code: 200 duration: "" @@ -2295,10 +2295,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2307,7 +2307,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:13:59 GMT + - Wed, 18 Oct 2023 17:10:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2317,7 +2317,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be7ffebe-5f1f-41f4-bb40-4c1422b05b4f + - 8d39c940-10af-474f-8625-6d6773449be9 status: 200 OK code: 200 duration: "" @@ -2328,10 +2328,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2340,7 +2340,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:04 GMT + - Wed, 18 Oct 2023 17:10:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2350,7 +2350,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75f3afc9-77af-40f2-be08-a1f84800ad69 + - 379a81eb-3330-444f-bfba-f33567cf97a4 status: 200 OK code: 200 duration: "" @@ -2361,10 +2361,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2373,7 +2373,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:09 GMT + - Wed, 18 Oct 2023 17:10:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2383,7 +2383,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce815520-6545-48de-ac53-4d26ae4cf550 + - 82959f0c-024a-4140-b4d9-8e21e5837fd4 status: 200 OK code: 200 duration: "" @@ -2394,10 +2394,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2406,7 +2406,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:14 GMT + - Wed, 18 Oct 2023 17:11:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2416,7 +2416,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cf60a49-8556-4438-ba28-e81d42acc462 + - 89acc903-f7b8-4f47-a75e-3e3876b3d237 status: 200 OK code: 200 duration: "" @@ -2427,10 +2427,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2439,7 +2439,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:19 GMT + - Wed, 18 Oct 2023 17:11:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2449,7 +2449,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24ff8636-e0e9-4520-ba1c-3e8452c78282 + - b1a70c69-b69e-4858-89b9-6170af1eea2f status: 200 OK code: 200 duration: "" @@ -2460,10 +2460,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2472,7 +2472,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:24 GMT + - Wed, 18 Oct 2023 17:11:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2482,7 +2482,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82c1c421-d6d4-4015-94eb-2dd92bf5dc6b + - 133cfb91-fc1d-468e-ad4a-c55c08a49d2f status: 200 OK code: 200 duration: "" @@ -2493,10 +2493,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2505,7 +2505,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:29 GMT + - Wed, 18 Oct 2023 17:11:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2515,7 +2515,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c7abe8d-7b3c-4494-bbae-d11326d898fa + - 3b2650e8-419b-4a26-8de5-19493abe0a65 status: 200 OK code: 200 duration: "" @@ -2526,10 +2526,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:08:57.051887Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2538,7 +2538,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:34 GMT + - Wed, 18 Oct 2023 17:11:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2548,7 +2548,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b37a80d2-89d6-4490-936f-54fc306d57be + - 250a0bbc-8f77-411e-8753-9927a176b08e status: 200 OK code: 200 duration: "" @@ -2559,19 +2559,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T13:14:37.618440Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "613" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:40 GMT + - Wed, 18 Oct 2023 17:11:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2581,7 +2581,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90654379-4aa4-491d-8756-65f3e6d5923d + - b4f79433-e93e-401e-80f9-eaeeb4c5b849 status: 200 OK code: 200 duration: "" @@ -2592,19 +2592,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:09:47.405071Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1500" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:40 GMT + - Wed, 18 Oct 2023 17:11:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2614,7 +2614,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e5ba6c3-6941-43e6-b040-85093376dc07 + - 1ec934a7-3257-4cc9-8fdb-59522f85c5ac status: 200 OK code: 200 duration: "" @@ -2625,19 +2625,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T13:14:37.618440Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "613" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:40 GMT + - Wed, 18 Oct 2023 17:11:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2647,7 +2647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77812592-6457-4439-b83a-033311860673 + - b20e7845-b9b0-4d99-9cf1-9de4f7792933 status: 200 OK code: 200 duration: "" @@ -2658,19 +2658,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/nodes?order_by=created_at_asc&page=1&pool_id=b39fa162-33d6-4b7c-bcb9-923e56ab4cf3&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"nodes":[{"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T13:10:01.632682Z","error_message":null,"id":"8ec40f23-f05e-461c-b44f-8336ccc197b1","name":"scw-test-k8s-public-ip-pool-8ec40f23f05e461cb4","pool_id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","provider_id":"scaleway://instance/fr-par-1/c05ff395-cfe8-49b0-b360-e7fef2a21ff0","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T13:14:37.601634Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "660" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:40 GMT + - Wed, 18 Oct 2023 17:11:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2680,7 +2680,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 320766ce-363a-4f6a-9099-98fe2974f553 + - 2aad2cf9-da0b-46f4-88d2-39acfb459389 status: 200 OK code: 200 duration: "" @@ -2691,19 +2691,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:09:47.405071Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1500" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:40 GMT + - Wed, 18 Oct 2023 17:11:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2713,7 +2713,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8de457b0-3b92-465f-b210-0543a2c6d858 + - a173dbf3-4ae5-45dd-a2ac-2580475436ba status: 200 OK code: 200 duration: "" @@ -2724,19 +2724,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd139a05-39cf-4f92-9011-a67c8fda9c81 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"created_at":"2023-10-17T13:08:50.414671Z","dhcp_enabled":true,"id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-17T13:08:50.414671Z","id":"093f01a1-07bc-4e3f-8fa7-5482a1c3f341","subnet":"172.16.0.0/22","updated_at":"2023-10-17T13:08:50.414671Z"},{"created_at":"2023-10-17T13:08:50.414671Z","id":"ea92eda5-047f-45f5-b1ed-80e8492fcfed","subnet":"fd63:256c:45f7:b55e::/64","updated_at":"2023-10-17T13:08:50.414671Z"}],"tags":[],"updated_at":"2023-10-17T13:08:50.414671Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "718" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:40 GMT + - Wed, 18 Oct 2023 17:11:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2746,7 +2746,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b5ee208-8157-4b6f-abec-99ab57e8f9bb + - b4a4b916-b5e7-4e61-a7bd-937b1a66ef6f status: 200 OK code: 200 duration: "" @@ -2757,19 +2757,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T13:14:37.618440Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "613" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:40 GMT + - Wed, 18 Oct 2023 17:11:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2779,7 +2779,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e262eed-6d68-4d7f-b556-62b4327c39a2 + - 4579059b-d6ba-42f2-9bfb-9ded83895cc1 status: 200 OK code: 200 duration: "" @@ -2790,19 +2790,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/nodes?order_by=created_at_asc&pool_id=b39fa162-33d6-4b7c-bcb9-923e56ab4cf3&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"nodes":[{"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T13:10:01.632682Z","error_message":null,"id":"8ec40f23-f05e-461c-b44f-8336ccc197b1","name":"scw-test-k8s-public-ip-pool-8ec40f23f05e461cb4","pool_id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","provider_id":"scaleway://instance/fr-par-1/c05ff395-cfe8-49b0-b360-e7fef2a21ff0","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T13:14:37.601634Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "660" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:40 GMT + - Wed, 18 Oct 2023 17:12:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2812,7 +2812,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 604d3b0b-e82a-4a36-bc70-4d017d463e8f + - b83caeca-7661-4788-97d2-91255fb87bc0 status: 200 OK code: 200 duration: "" @@ -2823,23 +2823,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c05ff395-cfe8-49b0-b360-e7fef2a21ff0 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-10-17T13:10:02.114829+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-k8s-public-ip-pool-8ec40f23f05e461cb4","id":"c05ff395-cfe8-49b0-b360-e7fef2a21ff0","image":{"arch":"x86_64","creation_date":"2023-10-05T10:50:51.838301+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"8795d4a3-0918-41f3-b119-03a7effbdd8f","modification_date":"2023-10-05T11:06:46.734414+00:00","name":"k8s_base_node_2023-09-27.6","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"23e4a5ca-9587-4556-8eee-34cafe7b43cc","name":"k8s_base_node_2023-09-27.6","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:474c:1104::1","gateway":"2001:bc8:474c:1104::","netmask":"64"},"location":{"cluster_id":"4","hypervisor_id":"902","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:2a:f7","maintenances":[],"modification_date":"2023-10-17T13:10:24.466510+00:00","name":"scw-test-k8s-public-ip-pool-8ec40f23f05e461cb4","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.12.162.73","private_nics":[{"creation_date":"2023-10-17T13:10:02.757482+00:00","id":"035d31dc-5cd9-4a56-99ce-ff2a989edd1d","mac_address":"02:00:00:14:46:b8","modification_date":"2023-10-17T13:10:03.530997+00:00","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","server_id":"c05ff395-cfe8-49b0-b360-e7fef2a21ff0","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"163.172.143.139","dynamic":true,"family":"inet","gateway":null,"id":"b91ed422-a4c9-40e0-b7a7-de639f9ef90b","netmask":"32","provisioning_mode":"dhcp","tags":[]},"public_ips":[{"address":"163.172.143.139","dynamic":true,"family":"inet","gateway":null,"id":"b91ed422-a4c9-40e0-b7a7-de639f9ef90b","netmask":"32","provisioning_mode":"dhcp","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"367cd10b-9846-41b6-8d9b-abcd08b16fef","name":"kubernetes - 44bfce9e-f575-4ef5-a6aa-7f129922213a"},"state":"running","state_detail":"booting - kernel","tags":["kapsule=44bfce9e-f575-4ef5-a6aa-7f129922213a","pool=b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","pool-name=pool","runtime=containerd","managed=true","node=8ec40f23-f05e-461c-b44f-8336ccc197b1"],"volumes":{"0":{"boot":false,"creation_date":"2023-10-17T13:10:02.114829+00:00","export_uri":null,"id":"ecbc5aa7-71d4-4df2-82d2-dfea58974d59","modification_date":"2023-10-17T13:10:02.114829+00:00","name":"k8s_base_node_2023-09-27.6","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"c05ff395-cfe8-49b0-b360-e7fef2a21ff0","name":"scw-test-k8s-public-ip-pool-8ec40f23f05e461cb4"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "3915" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:40 GMT + - Wed, 18 Oct 2023 17:12:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2849,7 +2845,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7045a1d-e3ce-4c55-90b1-b8fcb3eee621 + - a6d3a894-21df-422b-b380-d5211ec31a46 status: 200 OK code: 200 duration: "" @@ -2860,19 +2856,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd139a05-39cf-4f92-9011-a67c8fda9c81 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"created_at":"2023-10-17T13:08:50.414671Z","dhcp_enabled":true,"id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-17T13:08:50.414671Z","id":"093f01a1-07bc-4e3f-8fa7-5482a1c3f341","subnet":"172.16.0.0/22","updated_at":"2023-10-17T13:08:50.414671Z"},{"created_at":"2023-10-17T13:08:50.414671Z","id":"ea92eda5-047f-45f5-b1ed-80e8492fcfed","subnet":"fd63:256c:45f7:b55e::/64","updated_at":"2023-10-17T13:08:50.414671Z"}],"tags":[],"updated_at":"2023-10-17T13:08:50.414671Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:05:46.657023Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "718" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:42 GMT + - Wed, 18 Oct 2023 17:12:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2882,7 +2878,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a20b760-958e-4468-8240-80ac7f675608 + - 7aaf3f8f-7dd2-453a-9ed4-4406d58449fc status: 200 OK code: 200 duration: "" @@ -2893,19 +2889,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:09:47.405071Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T17:12:11.121274Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1500" + - "613" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:42 GMT + - Wed, 18 Oct 2023 17:12:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2915,7 +2911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa2bf103-5b56-4bd1-bee8-c8c06bb459ae + - d66997db-155c-4b02-8a67-b1415e64f50d status: 200 OK code: 200 duration: "" @@ -2926,19 +2922,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWNlRVUm5NVTB4YjFoRVZFMTZUVlJCZUU1cVJYcE5SR2N4VFRGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUR1kzQ2xkb1RubFdRbk5HUTFKa2RFa3hTRUZpVW1rMWVtaGpUMnN6UzJkc1dIQXlRMjh5TW1adWIyNDBabFpVUWpoTFoxUTJiV0ZvUjFkMGJrdDRWMEZETDNvS1prSnpZMFZJTTNKV09HRXZXWFJHY1hKclZGa3pPRVYxZEhFd1RraHZZWFVyZVdZM01FVXdZWFpvYkhONlltMHdTbnBoTXpOeVJIQlRhMUpZY0hObGVBcFBSbmRqVkRrelRFdzVPRWQ1WTJndlpuRTBUV1pQWm1kR1lXaDVOV3d6VlZaR09Dc3ZRVEEyUnpFMFNXVklkVlZPTW01RVVGTkZOM0puY0dsWldGWXpDa2w0T1dneGVWVlRUVkpoV1dsRU4ydFpSelZ0YW14UmJYZHNhRVJ2TUM5VVpFMTZXbEJKZW5GV1UyVnVLM0pOUkZFelVHeExRMUYzSzJ0SVJHRXhWbkFLU25wT1dVRmpOREUyWmt0VE1rSk9WREpHYUVOdVIxVTBORTl0Ymt4Vk1UWlRNR3ROUlhaNVNXRlhjR2wwU2twU1MwaFpRa3RCUTNObUwxSkxhbGhKZVFwM1pESnhaVXBwTkM5c1JXb3JlbEppU2l0elEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRVREQkZMM1F6WjFGTlMwUlRNM0ZtV25CaldHVkhVRWxwYkZwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFR6UjNjV0ZvTW5CWk5qSjJSRE5pZGxNek9WaHVSRmt3YW5kd1JHTjNkaTlQZG0xNFZVUlFXblJvUjFCVVpFcHJOUXByTmtGTlRHb3hWRmN3UjI4MFJHUXhUVlpsZURONlMybHJkM05HVG5WcGJVTkdXVGw0VDBOM1drOXFTR0pwWWpSNlVYVXhjVVYxVUdoWGJtRkNaVGxhQ2xaaWEzbENOR1Y0ZGpWblowcGxUMnQyT1ZGNU9XWnFTM1pNYVZkaE4wTXZiMk41VGtkWldqWXhXRlkzVW14c2FFWjRjVkJpVkZoclZuZDRXRXRPZVc0S1VtbzVZVlpZT1VWdmJsTmtaRk5XY2pCTU5UTjZkMkp2UmpsQlRIQXdNRlpYT0VaSFNsRnVTbGN4T0doTlNYTjJWWFJOYmxaeFdGSTBkMlpGUzJaUE1ncGthVWQ2YzNkYWNFSTJWazlKY3pGQk4xbGxlVzluYm5CVE1rWjFZbXRDVW5SRFVERkNjR2RWUnpCQ1NuVTBVekZQU0RaNFYwcHhaa0pxUVhjd01XNUhDamR5V0VoWlIzbG9NRnBXV2twR1lreDVORWs0UVZvelRrcEVPVFJKUlVacU5rVmxkQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDRiZmNlOWUtZjU3NS00ZWY1LWE2YWEtN2YxMjk5MjIyMTNhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBCZWl3aUFWNFFDbkFaT1JtcUNDMTFYQUJ4aE1jRURlM0pWVWx4Y2s1VmJDWlFqSE56aHg4UExFYg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:07:10.949789Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2638" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:42 GMT + - Wed, 18 Oct 2023 17:12:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2948,7 +2944,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dd38967-96b2-457a-9184-edb265e0c663 + - 765925c4-fe0b-4c49-9466-db4b10805c92 status: 200 OK code: 200 duration: "" @@ -2959,10 +2955,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T13:14:37.618440Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T17:12:11.121274Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "613" @@ -2971,7 +2967,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:42 GMT + - Wed, 18 Oct 2023 17:12:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2981,7 +2977,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ce8c561-6f0d-46c0-8aea-f827a7d0e1c8 + - 6bb25aca-6133-49ce-bdd7-e68ae365e26d status: 200 OK code: 200 duration: "" @@ -2992,19 +2988,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/nodes?order_by=created_at_asc&page=1&pool_id=b39fa162-33d6-4b7c-bcb9-923e56ab4cf3&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/nodes?order_by=created_at_asc&page=1&pool_id=d38eed5f-356c-45cc-b081-fdca496aa995&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T13:10:01.632682Z","error_message":null,"id":"8ec40f23-f05e-461c-b44f-8336ccc197b1","name":"scw-test-k8s-public-ip-pool-8ec40f23f05e461cb4","pool_id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","provider_id":"scaleway://instance/fr-par-1/c05ff395-cfe8-49b0-b360-e7fef2a21ff0","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T13:14:37.601634Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T17:07:15.323103Z","error_message":null,"id":"b5cb9457-0865-4b0d-ac1f-b375f9e513d5","name":"scw-test-k8s-public-ip-pool-b5cb945708654b0dac","pool_id":"d38eed5f-356c-45cc-b081-fdca496aa995","provider_id":"scaleway://instance/fr-par-1/ff62c988-07a5-4aa8-bf13-690a11baad87","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T17:12:11.109867Z"}],"total_count":1}' headers: Content-Length: - - "660" + - "658" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:42 GMT + - Wed, 18 Oct 2023 17:12:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3014,7 +3010,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0a16a4f-2db8-4990-aebc-c78c25b1847d + - 487d94e5-3145-4ca0-9f98-92d441614266 status: 200 OK code: 200 duration: "" @@ -3025,19 +3021,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd139a05-39cf-4f92-9011-a67c8fda9c81 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 method: GET response: - body: '{"created_at":"2023-10-17T13:08:50.414671Z","dhcp_enabled":true,"id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-17T13:08:50.414671Z","id":"093f01a1-07bc-4e3f-8fa7-5482a1c3f341","subnet":"172.16.0.0/22","updated_at":"2023-10-17T13:08:50.414671Z"},{"created_at":"2023-10-17T13:08:50.414671Z","id":"ea92eda5-047f-45f5-b1ed-80e8492fcfed","subnet":"fd63:256c:45f7:b55e::/64","updated_at":"2023-10-17T13:08:50.414671Z"}],"tags":[],"updated_at":"2023-10-17T13:08:50.414671Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:07:10.949789Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "718" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:43 GMT + - Wed, 18 Oct 2023 17:12:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3047,7 +3043,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a67024f-440c-4684-ab91-ecc4130b0e86 + - 46cb5ad1-8f8f-4264-8199-f7722da712bd status: 200 OK code: 200 duration: "" @@ -3058,19 +3054,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b27b50b7-86ff-406e-b08b-de82de78fe7a method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:09:47.405071Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"created_at":"2023-10-18T17:05:38.963133Z","dhcp_enabled":true,"id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:05:38.963133Z","id":"b6f618ae-5f6f-4745-acbc-66e1cba782d7","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:05:38.963133Z"},{"created_at":"2023-10-18T17:05:38.963133Z","id":"385347c4-de12-4c0f-ab0e-d6fc33b70b07","subnet":"fd63:256c:45f7:2b74::/64","updated_at":"2023-10-18T17:05:38.963133Z"}],"tags":[],"updated_at":"2023-10-18T17:05:38.963133Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1500" + - "719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:43 GMT + - Wed, 18 Oct 2023 17:12:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3080,7 +3076,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a912fe97-cc1e-419b-a513-18fe5536e3d5 + - 8d201f05-1451-46b1-baf8-243a1e3bf74b status: 200 OK code: 200 duration: "" @@ -3091,19 +3087,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWNlRVUm5NVTB4YjFoRVZFMTZUVlJCZUU1cVJYcE5SR2N4VFRGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUR1kzQ2xkb1RubFdRbk5HUTFKa2RFa3hTRUZpVW1rMWVtaGpUMnN6UzJkc1dIQXlRMjh5TW1adWIyNDBabFpVUWpoTFoxUTJiV0ZvUjFkMGJrdDRWMEZETDNvS1prSnpZMFZJTTNKV09HRXZXWFJHY1hKclZGa3pPRVYxZEhFd1RraHZZWFVyZVdZM01FVXdZWFpvYkhONlltMHdTbnBoTXpOeVJIQlRhMUpZY0hObGVBcFBSbmRqVkRrelRFdzVPRWQ1WTJndlpuRTBUV1pQWm1kR1lXaDVOV3d6VlZaR09Dc3ZRVEEyUnpFMFNXVklkVlZPTW01RVVGTkZOM0puY0dsWldGWXpDa2w0T1dneGVWVlRUVkpoV1dsRU4ydFpSelZ0YW14UmJYZHNhRVJ2TUM5VVpFMTZXbEJKZW5GV1UyVnVLM0pOUkZFelVHeExRMUYzSzJ0SVJHRXhWbkFLU25wT1dVRmpOREUyWmt0VE1rSk9WREpHYUVOdVIxVTBORTl0Ymt4Vk1UWlRNR3ROUlhaNVNXRlhjR2wwU2twU1MwaFpRa3RCUTNObUwxSkxhbGhKZVFwM1pESnhaVXBwTkM5c1JXb3JlbEppU2l0elEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRVREQkZMM1F6WjFGTlMwUlRNM0ZtV25CaldHVkhVRWxwYkZwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFR6UjNjV0ZvTW5CWk5qSjJSRE5pZGxNek9WaHVSRmt3YW5kd1JHTjNkaTlQZG0xNFZVUlFXblJvUjFCVVpFcHJOUXByTmtGTlRHb3hWRmN3UjI4MFJHUXhUVlpsZURONlMybHJkM05HVG5WcGJVTkdXVGw0VDBOM1drOXFTR0pwWWpSNlVYVXhjVVYxVUdoWGJtRkNaVGxhQ2xaaWEzbENOR1Y0ZGpWblowcGxUMnQyT1ZGNU9XWnFTM1pNYVZkaE4wTXZiMk41VGtkWldqWXhXRlkzVW14c2FFWjRjVkJpVkZoclZuZDRXRXRPZVc0S1VtbzVZVlpZT1VWdmJsTmtaRk5XY2pCTU5UTjZkMkp2UmpsQlRIQXdNRlpYT0VaSFNsRnVTbGN4T0doTlNYTjJWWFJOYmxaeFdGSTBkMlpGUzJaUE1ncGthVWQ2YzNkYWNFSTJWazlKY3pGQk4xbGxlVzluYm5CVE1rWjFZbXRDVW5SRFVERkNjR2RWUnpCQ1NuVTBVekZQU0RaNFYwcHhaa0pxUVhjd01XNUhDamR5V0VoWlIzbG9NRnBXV2twR1lreDVORWs0UVZvelRrcEVPVFJKUlVacU5rVmxkQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDRiZmNlOWUtZjU3NS00ZWY1LWE2YWEtN2YxMjk5MjIyMTNhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBCZWl3aUFWNFFDbkFaT1JtcUNDMTFYQUJ4aE1jRURlM0pWVWx4Y2s1VmJDWlFqSE56aHg4UExFYg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T17:12:11.121274Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2638" + - "613" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:43 GMT + - Wed, 18 Oct 2023 17:12:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3113,7 +3109,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 294f97dd-1851-45a4-996e-3a09c176a471 + - 691b96d7-5ee4-4432-a746-a0e7435de59c status: 200 OK code: 200 duration: "" @@ -3124,19 +3120,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/nodes?order_by=created_at_asc&pool_id=d38eed5f-356c-45cc-b081-fdca496aa995&status=unknown method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T13:14:37.618440Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T17:07:15.323103Z","error_message":null,"id":"b5cb9457-0865-4b0d-ac1f-b375f9e513d5","name":"scw-test-k8s-public-ip-pool-b5cb945708654b0dac","pool_id":"d38eed5f-356c-45cc-b081-fdca496aa995","provider_id":"scaleway://instance/fr-par-1/ff62c988-07a5-4aa8-bf13-690a11baad87","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T17:12:11.109867Z"}],"total_count":1}' headers: Content-Length: - - "613" + - "658" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:43 GMT + - Wed, 18 Oct 2023 17:12:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3146,7 +3142,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9a8f856-c4e0-49ff-ad0f-ec36e4587c3c + - af73701c-690a-4b14-a033-ea09b01f706a status: 200 OK code: 200 duration: "" @@ -3157,19 +3153,23 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/nodes?order_by=created_at_asc&page=1&pool_id=b39fa162-33d6-4b7c-bcb9-923e56ab4cf3&status=unknown + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ff62c988-07a5-4aa8-bf13-690a11baad87 method: GET response: - body: '{"nodes":[{"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T13:10:01.632682Z","error_message":null,"id":"8ec40f23-f05e-461c-b44f-8336ccc197b1","name":"scw-test-k8s-public-ip-pool-8ec40f23f05e461cb4","pool_id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","provider_id":"scaleway://instance/fr-par-1/c05ff395-cfe8-49b0-b360-e7fef2a21ff0","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T13:14:37.601634Z"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-10-18T17:07:16.269554+00:00","dynamic_ip_required":true,"enable_ipv6":true,"extra_networks":[],"hostname":"scw-test-k8s-public-ip-pool-b5cb945708654b0dac","id":"ff62c988-07a5-4aa8-bf13-690a11baad87","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":{"address":"2001:bc8:474c:1901::1","gateway":"2001:bc8:474c:1901::","netmask":"64"},"location":{"cluster_id":"4","hypervisor_id":"1302","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:5e:33","maintenances":[],"modification_date":"2023-10-18T17:07:32.646805+00:00","name":"scw-test-k8s-public-ip-pool-b5cb945708654b0dac","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.12.164.67","private_nics":[{"creation_date":"2023-10-18T17:07:16.831824+00:00","id":"55ab2295-4836-40ed-abda-33478ae451c4","mac_address":"02:00:00:14:4d:51","modification_date":"2023-10-18T17:07:17.610875+00:00","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","server_id":"ff62c988-07a5-4aa8-bf13-690a11baad87","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.143.114","dynamic":true,"family":"inet","gateway":null,"id":"37d573b3-feb6-4fcb-b0ad-699a6299a21e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.143.114","dynamic":true,"family":"inet","gateway":null,"id":"37d573b3-feb6-4fcb-b0ad-699a6299a21e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":false,"security_group":{"id":"92e3a255-acd6-4ef5-bc55-ba14ba229683","name":"kubernetes + 4f82f936-189f-46c3-b063-e7b2af051c79"},"state":"running","state_detail":"booting + kernel","tags":["kapsule=4f82f936-189f-46c3-b063-e7b2af051c79","pool=d38eed5f-356c-45cc-b081-fdca496aa995","pool-name=pool","runtime=containerd","managed=true","node=b5cb9457-0865-4b0d-ac1f-b375f9e513d5"],"volumes":{"0":{"boot":false,"creation_date":"2023-10-18T17:07:16.269554+00:00","export_uri":null,"id":"a15d625e-c6ce-4054-9dee-575634f80667","modification_date":"2023-10-18T17:07:16.269554+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"ff62c988-07a5-4aa8-bf13-690a11baad87","name":"scw-test-k8s-public-ip-pool-b5cb945708654b0dac"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "660" + - "3954" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:43 GMT + - Wed, 18 Oct 2023 17:12:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3179,7 +3179,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87074b5b-0b44-401a-96c5-a5fd1c8a8ddc + - feffed05-00aa-40d7-afb9-8632f1807bdf status: 200 OK code: 200 duration: "" @@ -3190,19 +3190,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/b39fa162-33d6-4b7c-bcb9-923e56ab4cf3 - method: DELETE + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b27b50b7-86ff-406e-b08b-de82de78fe7a + method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:08:57.043175Z","id":"b39fa162-33d6-4b7c-bcb9-923e56ab4cf3","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-17T13:14:45.611948658Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-18T17:05:38.963133Z","dhcp_enabled":true,"id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:05:38.963133Z","id":"b6f618ae-5f6f-4745-acbc-66e1cba782d7","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:05:38.963133Z"},{"created_at":"2023-10-18T17:05:38.963133Z","id":"385347c4-de12-4c0f-ab0e-d6fc33b70b07","subnet":"fd63:256c:45f7:2b74::/64","updated_at":"2023-10-18T17:05:38.963133Z"}],"tags":[],"updated_at":"2023-10-18T17:05:38.963133Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "619" + - "719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:45 GMT + - Wed, 18 Oct 2023 17:12:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3212,32 +3212,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ba0b7e5-85ec-4927-83c9-d3584943070b + - 01aea095-ebf8-4d57-9431-a3207d550747 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"192.168.0.0/22","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":true,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 + method: GET response: - body: '{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:07:10.949789Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "586" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:45 GMT + - Wed, 18 Oct 2023 17:12:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3247,7 +3245,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73c7f68c-c23d-409d-8826-28efcd3be27f + - 6d0a01eb-8a2f-44df-9ff1-fd733332e611 status: 200 OK code: 200 duration: "" @@ -3258,19 +3256,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/b28823e9-af42-4590-99af-5fb5f997504c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/kubeconfig method: GET response: - body: '{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVelRVUlZNRTFzYjFoRVZFMTZUVlJCZUU1NlJUTk5SRlV3VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMjl4Q2xrNFNIaDRhR3M1UkVreE56TjNZMGd4ZVRnemMzcFhiWFpFZDJ0d2FrOVhVRXhxTDFwa05scEZjSE5FWlRoalpVMVNOVUZYUWxwNVExWjFaRUpXVUhrS1VXWlFUVXRQUTNkRGQwRjFaekJpVldFelIwZE1UREZoVldkWFUwd3dlbkZRY0dsTGRtMUxTRXhtTkV4cVVHcE1VRGxaZUdKTFYyMWFPRGRXVjBVelRncEJRM3B0VTNGQk9VYzJNa1U1UjFGNVJYWkhRbHBJWW1sWksza3lkV0pLVVhWQmJHbFpSMG94ZUZNMVVWbGxhRTFSU25GSFJIQXhSMDg1ZDJSeU5VZHlDbmc1TDJKdmVqQmpPR3Q2TmxoT1NucFZSblJOZUU0NFpEQXZaVlZwUjBNMmFTdHBSMU5GVFU0eWEwUkhjVW8yTW1NMU4yaDJXbk40UTJZek1HUTFVbXNLWjB0NFQwRXpaVWhLVFVwNFQyMXpabEJLUjNoUVFubDJVR1FyU2tkaVJuUlZkME5SVkhkbVluTnFTSGRuSzFOYVJXczRSVkl2U0RsdlJVbHRWa3hyZUFwbFFtazNTMUUwSzIxRmVVWTVNelU0WVZjd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUGJUWTRTbUZsWm1GclZWUm9SMDR2UkhFMVIwNUtWVXBNV1VoTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmNFeDBaVnBFWm1veFMyeDVkV3hIV1U5SmJrbDNlRlpDZVhFM1RYQnRZa3gyUVRkeFNFcFNTaTg1YUV4emRWSkpWd3ByUVRaUVVVZHBhemRVYzJGdFQwUlVOU3Q0ZDBRck1rY3daRzB5Vm5KSlkyRkdSVzAyYjJJNVpHeDNiRkJ2WjFwRU1rZFBTVFo1UVVWcVdWZFdiWFpqQ20xeGEweEpaRGR6UkRWb01EbHVURmhoVGt4aFZUbHRZblYyT1d3MGFXbExPVmw0VFcxQk1WQlJUbUptUjBOTGJYbHVPREpoYVVsTU9XMTBiRkFyYUVnS1VIcFZNbVp5TmxkemNTOU9ibEo1VkZOaWIyZ3haVkJ5TmpOV2JGazVkazk2YkROTWVVUnlaMnR1UldnNFFVaHpVVGxvYlRaVUx6aFBXR2xTUzBjNGNRbzRiV2xMVHk5eFprMW5NWFZzZVRJMmNuZFBiV1ZVVmk5TVdITktNbmRCUldJeU5rTndXR3hMZEdWWVYyc3phRGxDVUVSYVlYcG1TMGh2WTNWNWFWbHVDbFZJU1ROdVIzTTNUQzlvWVhaeVF6QkhUVkYwZVdzNFIydFBkbU5vVDJOQk4zQjZVd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNGY4MmY5MzYtMTg5Zi00NmMzLWIwNjMtZTdiMmFmMDUxYzc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBDT2FQVE5idURiSFpYY3pBbDhKWTN6R29UeTZFeXlWWjNPMkE3YXBpWE1TVm9MclhFaThkdmR5SA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "586" + - "2638" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:45 GMT + - Wed, 18 Oct 2023 17:12:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3280,32 +3278,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6d05d10-8b8e-42b6-81d2-4866b59ad9d6 + - 42872d85-b2e5-4be6-a5f5-13e21f01d4a8 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","name":"test-k8s-public-ip","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":null,"enable_smtp":false,"enable_bastion":false,"bastion_port":null}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T17:12:11.121274Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "613" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 17:12:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4a4a3a95-a0a6-435d-84e3-416be0ec7d7e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/nodes?order_by=created_at_asc&page=1&pool_id=d38eed5f-356c-45cc-b081-fdca496aa995&status=unknown + method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:46.350480Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T17:07:15.323103Z","error_message":null,"id":"b5cb9457-0865-4b0d-ac1f-b375f9e513d5","name":"scw-test-k8s-public-ip-pool-b5cb945708654b0dac","pool_id":"d38eed5f-356c-45cc-b081-fdca496aa995","provider_id":"scaleway://instance/fr-par-1/ff62c988-07a5-4aa8-bf13-690a11baad87","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T17:12:11.109867Z"}],"total_count":1}' headers: Content-Length: - - "960" + - "658" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:46 GMT + - Wed, 18 Oct 2023 17:12:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3315,7 +3344,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4065ef8e-c1cc-4275-92b3-15dade2b032c + - a30ebffc-8d89-45e9-9763-77df05d98b47 status: 200 OK code: 200 duration: "" @@ -3326,19 +3355,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b27b50b7-86ff-406e-b08b-de82de78fe7a method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:46.394637Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-18T17:05:38.963133Z","dhcp_enabled":true,"id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:05:38.963133Z","id":"b6f618ae-5f6f-4745-acbc-66e1cba782d7","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:05:38.963133Z"},{"created_at":"2023-10-18T17:05:38.963133Z","id":"385347c4-de12-4c0f-ab0e-d6fc33b70b07","subnet":"fd63:256c:45f7:2b74::/64","updated_at":"2023-10-18T17:05:38.963133Z"}],"tags":[],"updated_at":"2023-10-18T17:05:38.963133Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "963" + - "719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:46 GMT + - Wed, 18 Oct 2023 17:12:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3348,7 +3377,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36c9566c-0d1a-4b23-95b5-ec2ff73c4aec + - 112ceb70-3080-4fc9-8601-4c7fc8ccb9c0 status: 200 OK code: 200 duration: "" @@ -3359,19 +3388,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:46.973162Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:07:10.949789Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "960" + - "1500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:51 GMT + - Wed, 18 Oct 2023 17:12:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3381,7 +3410,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a878d05f-b865-45d6-a753-62f5f76ec20b + - d9bd74f4-adeb-40fc-ad1f-d48b34f4469c status: 200 OK code: 200 duration: "" @@ -3392,19 +3421,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/kubeconfig method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:46.973162Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVelRVUlZNRTFzYjFoRVZFMTZUVlJCZUU1NlJUTk5SRlV3VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMjl4Q2xrNFNIaDRhR3M1UkVreE56TjNZMGd4ZVRnemMzcFhiWFpFZDJ0d2FrOVhVRXhxTDFwa05scEZjSE5FWlRoalpVMVNOVUZYUWxwNVExWjFaRUpXVUhrS1VXWlFUVXRQUTNkRGQwRjFaekJpVldFelIwZE1UREZoVldkWFUwd3dlbkZRY0dsTGRtMUxTRXhtTkV4cVVHcE1VRGxaZUdKTFYyMWFPRGRXVjBVelRncEJRM3B0VTNGQk9VYzJNa1U1UjFGNVJYWkhRbHBJWW1sWksza3lkV0pLVVhWQmJHbFpSMG94ZUZNMVVWbGxhRTFSU25GSFJIQXhSMDg1ZDJSeU5VZHlDbmc1TDJKdmVqQmpPR3Q2TmxoT1NucFZSblJOZUU0NFpEQXZaVlZwUjBNMmFTdHBSMU5GVFU0eWEwUkhjVW8yTW1NMU4yaDJXbk40UTJZek1HUTFVbXNLWjB0NFQwRXpaVWhLVFVwNFQyMXpabEJLUjNoUVFubDJVR1FyU2tkaVJuUlZkME5SVkhkbVluTnFTSGRuSzFOYVJXczRSVkl2U0RsdlJVbHRWa3hyZUFwbFFtazNTMUUwSzIxRmVVWTVNelU0WVZjd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUGJUWTRTbUZsWm1GclZWUm9SMDR2UkhFMVIwNUtWVXBNV1VoTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmNFeDBaVnBFWm1veFMyeDVkV3hIV1U5SmJrbDNlRlpDZVhFM1RYQnRZa3gyUVRkeFNFcFNTaTg1YUV4emRWSkpWd3ByUVRaUVVVZHBhemRVYzJGdFQwUlVOU3Q0ZDBRck1rY3daRzB5Vm5KSlkyRkdSVzAyYjJJNVpHeDNiRkJ2WjFwRU1rZFBTVFo1UVVWcVdWZFdiWFpqQ20xeGEweEpaRGR6UkRWb01EbHVURmhoVGt4aFZUbHRZblYyT1d3MGFXbExPVmw0VFcxQk1WQlJUbUptUjBOTGJYbHVPREpoYVVsTU9XMTBiRkFyYUVnS1VIcFZNbVp5TmxkemNTOU9ibEo1VkZOaWIyZ3haVkJ5TmpOV2JGazVkazk2YkROTWVVUnlaMnR1UldnNFFVaHpVVGxvYlRaVUx6aFBXR2xTUzBjNGNRbzRiV2xMVHk5eFprMW5NWFZzZVRJMmNuZFBiV1ZVVmk5TVdITktNbmRCUldJeU5rTndXR3hMZEdWWVYyc3phRGxDVUVSYVlYcG1TMGh2WTNWNWFWbHVDbFZJU1ROdVIzTTNUQzlvWVhaeVF6QkhUVkYwZVdzNFIydFBkbU5vVDJOQk4zQjZVd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNGY4MmY5MzYtMTg5Zi00NmMzLWIwNjMtZTdiMmFmMDUxYzc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBDT2FQVE5idURiSFpYY3pBbDhKWTN6R29UeTZFeXlWWjNPMkE3YXBpWE1TVm9MclhFaThkdmR5SA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "960" + - "2638" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:51 GMT + - Wed, 18 Oct 2023 17:12:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3414,7 +3443,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef0f0021-e5e8-4838-ae0f-e5815f8a553d + - 97895d42-b1b1-4a26-a019-c04437100939 status: 200 OK code: 200 duration: "" @@ -3425,19 +3454,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:46.973162Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T17:12:11.121274Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "960" + - "613" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:51 GMT + - Wed, 18 Oct 2023 17:12:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3447,32 +3476,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0d512d4-2026-41ea-8cca-4c6843dabbfc + - 1b4e1792-894f-423a-ba69-e9b55ebc6b36 status: 200 OK code: 200 duration: "" - request: - body: '{"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"b28823e9-af42-4590-99af-5fb5f997504c"}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/nodes?order_by=created_at_asc&page=1&pool_id=d38eed5f-356c-45cc-b081-fdca496aa995&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T17:07:15.323103Z","error_message":null,"id":"b5cb9457-0865-4b0d-ac1f-b375f9e513d5","name":"scw-test-k8s-public-ip-pool-b5cb945708654b0dac","pool_id":"d38eed5f-356c-45cc-b081-fdca496aa995","provider_id":"scaleway://instance/fr-par-1/ff62c988-07a5-4aa8-bf13-690a11baad87","public_ip_v4":"51.15.143.114","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T17:12:11.109867Z"}],"total_count":1}' + headers: + Content-Length: + - "658" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 17:12:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 119a83c0-705f-40dc-93d5-51f3d90e71fa + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d38eed5f-356c-45cc-b081-fdca496aa995 + method: DELETE response: - body: '{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":null,"private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"created","updated_at":"2023-10-17T13:14:53.394376Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:05:46.645102Z","id":"d38eed5f-356c-45cc-b081-fdca496aa995","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-18T17:12:19.425900905Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "963" + - "619" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:54 GMT + - Wed, 18 Oct 2023 17:12:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3482,30 +3542,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f58f747d-6fcc-40ac-b201-df94f19439fa + - 5a5df83a-9ec0-496d-9283-8d298c2dbdab status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"192.168.0.0/22","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":true,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df - method: GET + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps + method: POST response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":null,"private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"created","updated_at":"2023-10-17T13:14:53.394376Z","zone":"fr-par-1"}],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:54.014085Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - - "1927" + - "586" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:54 GMT + - Wed, 18 Oct 2023 17:12:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3515,7 +3577,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77da6171-1161-473f-a4c2-c2159bb155e4 + - aacc1059-8880-48e7-9bb4-c1a3deda5e18 status: 200 OK code: 200 duration: "" @@ -3526,19 +3588,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/8488fefa-e9b0-4874-9796-d69f72ea632b method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":"02:00:00:14:46:BB","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"ready","updated_at":"2023-10-17T13:14:55.908417Z","zone":"fr-par-1"}],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:55.996721Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - - "1936" + - "586" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:59 GMT + - Wed, 18 Oct 2023 17:12:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3548,30 +3610,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39047e5a-543b-4f1b-9746-2fc64fccd368 + - 5f9f3cfa-3f30-41ad-b84b-5a120e164724 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","name":"test-k8s-public-ip","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":null,"enable_smtp":false,"enable_bastion":false,"bastion_port":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/db0a2bca-b1cf-4af1-945d-ceaecf3805e5 - method: GET + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways + method: POST response: - body: '{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":"02:00:00:14:46:BB","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"ready","updated_at":"2023-10-17T13:14:55.908417Z","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:20.078194Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' headers: Content-Length: - - "976" + - "981" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:59 GMT + - Wed, 18 Oct 2023 17:12:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3581,7 +3645,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50c644fa-aeb1-4d51-9959-458c43c0bad4 + - a925546d-bceb-4a97-8e6d-5b8913e8eded status: 200 OK code: 200 duration: "" @@ -3592,19 +3656,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/db0a2bca-b1cf-4af1-945d-ceaecf3805e5 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 method: GET response: - body: '{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":"02:00:00:14:46:BB","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"ready","updated_at":"2023-10-17T13:14:55.908417Z","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:20.111352Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "976" + - "984" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:59 GMT + - Wed, 18 Oct 2023 17:12:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3614,7 +3678,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b692cde-2354-410a-a23d-97690677aca2 + - 5aa75e88-e8f9-42a9-9bf0-b8a3a2b7eadb status: 200 OK code: 200 duration: "" @@ -3625,19 +3689,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":"02:00:00:14:46:BB","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"ready","updated_at":"2023-10-17T13:14:55.908417Z","zone":"fr-par-1"}],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:55.996721Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:20.729258Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1936" + - "981" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:59 GMT + - Wed, 18 Oct 2023 17:12:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3647,7 +3711,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9d7fdc6-fd60-4f4e-8f39-d9d4a794f1cf + - 1527b41a-9f70-42bb-9638-7017bdbb8ff7 status: 200 OK code: 200 duration: "" @@ -3658,19 +3722,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/db0a2bca-b1cf-4af1-945d-ceaecf3805e5 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 method: GET response: - body: '{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":"02:00:00:14:46:BB","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"ready","updated_at":"2023-10-17T13:14:55.908417Z","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:20.729258Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "976" + - "981" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:59 GMT + - Wed, 18 Oct 2023 17:12:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3680,7 +3744,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aaadc08f-0d0b-4f5f-8978-b2522435e273 + - 9886ca2b-bc2e-47ed-9567-2341321ec4a4 status: 200 OK code: 200 duration: "" @@ -3691,19 +3755,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:09:47.405071Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":false,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:20.729258Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1500" + - "981" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:59 GMT + - Wed, 18 Oct 2023 17:12:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3713,12 +3777,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9853b7e3-0e6c-4cb7-ae2e-684f9ac74d5f + - 0c4407a3-1b0c-4c65-b73a-fc0733bdf35d status: 200 OK code: 200 duration: "" - request: - body: '{"name":"pool","node_type":"gp1_xs","placement_group_id":null,"autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":true}' + body: '{"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"8488fefa-e9b0-4874-9796-d69f72ea632b"}' form: {} headers: Content-Type: @@ -3726,19 +3790,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/pools + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks method: POST response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706819674Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":null,"private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"created","updated_at":"2023-10-18T17:12:26.924175Z","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:59 GMT + - Wed, 18 Oct 2023 17:12:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3748,7 +3812,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 787e9c59-cff0-4e8d-9295-6c917a4df620 + - 389ba295-d07c-43d3-bd37-caf97fcca45b status: 200 OK code: 200 duration: "" @@ -3759,19 +3823,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":null,"private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"created","updated_at":"2023-10-18T17:12:26.924175Z","zone":"fr-par-1"}],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:27.089433Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "614" + - "1967" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:14:59 GMT + - Wed, 18 Oct 2023 17:12:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3781,7 +3845,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd002c9c-826a-41c5-87e8-48765095d943 + - c40f57ae-c023-43d1-b1df-81e2948fb97d status: 200 OK code: 200 duration: "" @@ -3792,19 +3856,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":"02:00:00:14:4D:5A","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"ready","updated_at":"2023-10-18T17:12:29.107374Z","zone":"fr-par-1"}],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:29.202280Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "614" + - "1976" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:15:04 GMT + - Wed, 18 Oct 2023 17:12:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3814,7 +3878,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0f0aeab-1e82-4d3f-b9be-98046f1e2af5 + - c9d17481-3a1c-4416-8eea-41bee71d720b status: 200 OK code: 200 duration: "" @@ -3825,19 +3889,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":"02:00:00:14:4D:5A","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"ready","updated_at":"2023-10-18T17:12:29.107374Z","zone":"fr-par-1"}' headers: Content-Length: - - "614" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:15:10 GMT + - Wed, 18 Oct 2023 17:12:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3847,7 +3911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdfa88e5-74a8-4b0e-b9c7-9e31ba39ba63 + - fb9af5a8-100b-4b8b-b677-b832c633d0c7 status: 200 OK code: 200 duration: "" @@ -3858,19 +3922,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":"02:00:00:14:4D:5A","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"ready","updated_at":"2023-10-18T17:12:29.107374Z","zone":"fr-par-1"}' headers: Content-Length: - - "614" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:15:15 GMT + - Wed, 18 Oct 2023 17:12:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3880,7 +3944,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a6f054c-fcdd-4b6c-8a0f-b454f24dfb71 + - 0b481cf8-5a35-474a-bc0e-324a8534d9b4 status: 200 OK code: 200 duration: "" @@ -3891,19 +3955,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":"02:00:00:14:4D:5A","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"ready","updated_at":"2023-10-18T17:12:29.107374Z","zone":"fr-par-1"}],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:29.202280Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "614" + - "1976" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:15:20 GMT + - Wed, 18 Oct 2023 17:12:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3913,7 +3977,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9510108-2a91-467e-a2c9-75372e6c3cdb + - 1cc95bec-b707-4af4-add3-fde2da3a2c81 status: 200 OK code: 200 duration: "" @@ -3924,19 +3988,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":"02:00:00:14:4D:5A","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"ready","updated_at":"2023-10-18T17:12:29.107374Z","zone":"fr-par-1"}' headers: Content-Length: - - "614" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:15:25 GMT + - Wed, 18 Oct 2023 17:12:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3946,7 +4010,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d721ee85-c83a-481c-af2c-032405379450 + - 85f4e1f6-34c6-49d2-923d-f58dfcb1f075 status: 200 OK code: 200 duration: "" @@ -3957,19 +4021,54 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:07:10.949789Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "614" + - "1500" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:12:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3e16614d-95b3-4897-a9ee-b4c6073691a2 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"pool","node_type":"gp1_xs","placement_group_id":null,"autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":true}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/pools + method: POST + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869213Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "617" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:15:30 GMT + - Wed, 18 Oct 2023 17:12:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3979,7 +4078,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4674a2e3-ae4b-4024-ad99-03229e7c9c50 + - 1c5dc916-792e-49b1-96ee-c50c94a30150 status: 200 OK code: 200 duration: "" @@ -3990,10 +4089,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4002,7 +4101,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:15:35 GMT + - Wed, 18 Oct 2023 17:12:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4012,7 +4111,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42b7142f-b352-455d-86c8-1bf486719ac8 + - ecab1b8e-2103-4beb-806f-d8c9cb84337b status: 200 OK code: 200 duration: "" @@ -4023,10 +4122,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4035,7 +4134,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:15:40 GMT + - Wed, 18 Oct 2023 17:12:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4045,7 +4144,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fb22274-1d4c-4eb6-94cc-287efb36ba81 + - c89bf176-c2f3-4aaf-a7a5-cf614f76dc2d status: 200 OK code: 200 duration: "" @@ -4056,10 +4155,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4068,7 +4167,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:15:45 GMT + - Wed, 18 Oct 2023 17:12:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4078,7 +4177,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20eb874c-63c7-44ed-be98-76d7f889fa3e + - ea2f4587-3031-4f76-aa54-e3b47f5e3300 status: 200 OK code: 200 duration: "" @@ -4089,10 +4188,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4101,7 +4200,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:15:50 GMT + - Wed, 18 Oct 2023 17:12:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4111,7 +4210,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5f6cfeb-a584-4a75-a185-36f6530ab0e8 + - 94dbf180-f00a-4be5-9ce4-7a05f77d7979 status: 200 OK code: 200 duration: "" @@ -4122,10 +4221,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4134,7 +4233,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:15:55 GMT + - Wed, 18 Oct 2023 17:12:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4144,7 +4243,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46bff4c0-6f64-429a-a334-0b593fc3b6f4 + - 5a691035-c2a1-471e-bf32-bafbe93252db status: 200 OK code: 200 duration: "" @@ -4155,10 +4254,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4167,7 +4266,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:00 GMT + - Wed, 18 Oct 2023 17:12:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4177,7 +4276,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87867342-84c6-475b-a2bb-48a70129a555 + - c6cf7dc2-cabe-41da-a8f3-b2e4e02a1b59 status: 200 OK code: 200 duration: "" @@ -4188,10 +4287,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4200,7 +4299,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:05 GMT + - Wed, 18 Oct 2023 17:13:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4210,7 +4309,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69aee451-f30f-4129-a535-dc13da380570 + - 7f317ae1-8b1e-4b7a-8438-6b89aa39f43f status: 200 OK code: 200 duration: "" @@ -4221,10 +4320,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4233,7 +4332,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:10 GMT + - Wed, 18 Oct 2023 17:13:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4243,7 +4342,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a32d5ad-f115-402f-b80e-d13aacdd001f + - e1c766c6-f220-4d00-b532-adc67198b10b status: 200 OK code: 200 duration: "" @@ -4254,10 +4353,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4266,7 +4365,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:15 GMT + - Wed, 18 Oct 2023 17:13:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4276,7 +4375,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc055da2-3ca3-499f-8b34-2685e83ecb08 + - 8ad45174-0cfe-4b39-b978-c1ed41aa8e11 status: 200 OK code: 200 duration: "" @@ -4287,10 +4386,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4299,7 +4398,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:20 GMT + - Wed, 18 Oct 2023 17:13:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4309,7 +4408,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90e61595-0795-4602-a990-da5e8ef2081f + - 2f140897-04d5-425c-8daa-464a00cae0e8 status: 200 OK code: 200 duration: "" @@ -4320,10 +4419,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4332,7 +4431,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:25 GMT + - Wed, 18 Oct 2023 17:13:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4342,7 +4441,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8de7edfd-6b33-4ced-bd30-5d255086f5ee + - 21108486-d457-47d1-aa03-8d7a680e398d status: 200 OK code: 200 duration: "" @@ -4353,10 +4452,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4365,7 +4464,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:30 GMT + - Wed, 18 Oct 2023 17:13:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4375,7 +4474,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d8ddad0-014d-4ae8-9f09-0f2798128a93 + - 77e8bf52-2573-4d1c-9fa2-eb00868d9843 status: 200 OK code: 200 duration: "" @@ -4386,10 +4485,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4398,7 +4497,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:36 GMT + - Wed, 18 Oct 2023 17:13:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4408,7 +4507,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3214091-da41-450b-909e-1cd345d47dcd + - 055e06b3-c700-4bed-bd58-ddee8c7a9f17 status: 200 OK code: 200 duration: "" @@ -4419,10 +4518,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4431,7 +4530,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:41 GMT + - Wed, 18 Oct 2023 17:13:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4441,7 +4540,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da792512-63f9-4635-9f2b-5467d349ef50 + - 40da6b0e-9e0e-4763-ad7d-a327711ed937 status: 200 OK code: 200 duration: "" @@ -4452,10 +4551,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4464,7 +4563,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:46 GMT + - Wed, 18 Oct 2023 17:13:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4474,7 +4573,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c36f8d7e-4824-43fc-a3fb-7a481fe5484c + - eb538e7e-7599-4266-9f12-4b01311daed0 status: 200 OK code: 200 duration: "" @@ -4485,10 +4584,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4497,7 +4596,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:51 GMT + - Wed, 18 Oct 2023 17:13:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4507,7 +4606,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 073f54de-a5f8-4206-9e2e-cf057a0bbf11 + - 1c47bea5-b68b-4dc0-9603-203a89c42316 status: 200 OK code: 200 duration: "" @@ -4518,10 +4617,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4530,7 +4629,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:16:56 GMT + - Wed, 18 Oct 2023 17:13:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4540,7 +4639,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abaad7bf-589c-4228-a902-3d188a64e878 + - 8fbe6f09-2814-4f6a-bbf6-82e8d2c799db status: 200 OK code: 200 duration: "" @@ -4551,10 +4650,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4563,7 +4662,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:01 GMT + - Wed, 18 Oct 2023 17:13:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4573,7 +4672,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5089bb6-505e-4032-97b3-383ea769fd47 + - 8afef93c-b16b-466a-bcdb-ebf2d52e519c status: 200 OK code: 200 duration: "" @@ -4584,10 +4683,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4596,7 +4695,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:06 GMT + - Wed, 18 Oct 2023 17:14:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4606,7 +4705,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 381914e9-1c38-4160-9260-b2c8d851dfdf + - 7f586d08-30dc-44a4-a4ff-be62f7aebe94 status: 200 OK code: 200 duration: "" @@ -4617,10 +4716,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4629,7 +4728,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:11 GMT + - Wed, 18 Oct 2023 17:14:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4639,7 +4738,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3363e1e9-0596-48f5-928e-1af431f7a451 + - 83827ead-1265-4fb9-b04f-eea445d53c36 status: 200 OK code: 200 duration: "" @@ -4650,10 +4749,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4662,7 +4761,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:16 GMT + - Wed, 18 Oct 2023 17:14:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4672,7 +4771,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08e104b4-9060-4f66-9f64-0de8d16f7506 + - 2140adef-97fa-4626-a8ff-6a6e246d312c status: 200 OK code: 200 duration: "" @@ -4683,10 +4782,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4695,7 +4794,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:21 GMT + - Wed, 18 Oct 2023 17:14:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4705,7 +4804,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e935b334-cab1-4022-a53f-24bf30d441db + - a0be8770-ff65-499f-b5a5-b834ff2963e2 status: 200 OK code: 200 duration: "" @@ -4716,10 +4815,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4728,7 +4827,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:26 GMT + - Wed, 18 Oct 2023 17:14:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4738,7 +4837,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eea2aa85-6fd2-455c-8999-f5b9bb7f8988 + - 0543178f-7825-4479-8962-87511da385aa status: 200 OK code: 200 duration: "" @@ -4749,10 +4848,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4761,7 +4860,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:31 GMT + - Wed, 18 Oct 2023 17:14:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4771,7 +4870,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88d4229a-a849-44e4-bcd2-ec17a0b1d304 + - 19171739-f107-41ad-8514-cc5bfecfc144 status: 200 OK code: 200 duration: "" @@ -4782,10 +4881,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4794,7 +4893,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:36 GMT + - Wed, 18 Oct 2023 17:14:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4804,7 +4903,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01a0c916-f66d-441c-82d1-eaedcc74b8c0 + - ec42f665-0f9a-49f8-a360-6f48540bb52d status: 200 OK code: 200 duration: "" @@ -4815,10 +4914,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4827,7 +4926,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:41 GMT + - Wed, 18 Oct 2023 17:14:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4837,7 +4936,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 687f25d6-6b44-461f-9a3b-3aff09628a03 + - d7390cf8-09ad-4140-85cb-9683af5daf9a status: 200 OK code: 200 duration: "" @@ -4848,10 +4947,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4860,7 +4959,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:47 GMT + - Wed, 18 Oct 2023 17:14:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4870,7 +4969,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19290d94-8b29-4ce1-bcff-1c162557f8ad + - 82458e3d-bb8c-4df0-9545-9c4b2c7bc004 status: 200 OK code: 200 duration: "" @@ -4881,10 +4980,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4893,7 +4992,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:52 GMT + - Wed, 18 Oct 2023 17:14:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4903,7 +5002,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b8f7b67-e2eb-4b16-9997-3a1092e9f491 + - 2197de5f-07f1-4bbe-b060-a921c946ab03 status: 200 OK code: 200 duration: "" @@ -4914,10 +5013,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4926,7 +5025,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:17:57 GMT + - Wed, 18 Oct 2023 17:14:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4936,7 +5035,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfe51885-fb84-4675-aadf-a8fbd5e2e367 + - e13ecc19-c094-49da-ae0b-4f15fe1005cf status: 200 OK code: 200 duration: "" @@ -4947,10 +5046,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4959,7 +5058,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:02 GMT + - Wed, 18 Oct 2023 17:15:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4969,7 +5068,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7084e197-3230-47f9-9c31-249b3539ee46 + - 8a476d6d-0918-42ab-9f7e-3853282869e2 status: 200 OK code: 200 duration: "" @@ -4980,10 +5079,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -4992,7 +5091,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:07 GMT + - Wed, 18 Oct 2023 17:15:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5002,7 +5101,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5a6ca02-46de-4f45-a43b-d8a0153dd0bc + - ea9c4fa9-7e3e-4219-bdcf-4895453f72de status: 200 OK code: 200 duration: "" @@ -5013,10 +5112,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T13:14:59.706820Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "614" @@ -5025,7 +5124,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:12 GMT + - Wed, 18 Oct 2023 17:15:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5035,7 +5134,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fd2b6fb-4be5-430a-905d-c099c32a88c3 + - 7ea7e0d2-e68c-4041-bf66-a188690f0341 status: 200 OK code: 200 duration: "" @@ -5046,19 +5145,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T13:18:16.553942Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "612" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:17 GMT + - Wed, 18 Oct 2023 17:15:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5068,7 +5167,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 490b7b7e-8fda-468e-ac82-0ab3214eff1a + - acd1d320-b394-490d-9172-09c05d765904 status: 200 OK code: 200 duration: "" @@ -5079,19 +5178,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T13:18:16.553942Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "612" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:17 GMT + - Wed, 18 Oct 2023 17:15:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5101,7 +5200,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ddfa45f-ea12-4dcb-8305-55ef952d59d0 + - 14b345a1-febe-453d-b1cd-988f22cf2106 status: 200 OK code: 200 duration: "" @@ -5112,19 +5211,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/nodes?order_by=created_at_asc&page=1&pool_id=fbb597b5-6889-4f92-a3c5-0098ac9cbb5a&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"nodes":[{"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T13:15:00.189680Z","error_message":null,"id":"af29284c-5f14-4005-a115-df2e788b2952","name":"scw-test-k8s-public-ip-pool-af29284c5f144005a1","pool_id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","provider_id":"scaleway://instance/fr-par-1/56c5a04b-f36e-4886-84df-a988825557d9","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T13:18:16.543047Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "645" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:17 GMT + - Wed, 18 Oct 2023 17:15:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5134,7 +5233,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b501e094-4d16-4ecb-937f-15d308955585 + - 7870ba94-6952-4b27-993f-949bc53a250a status: 200 OK code: 200 duration: "" @@ -5145,19 +5244,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:09:47.405071Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1500" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:17 GMT + - Wed, 18 Oct 2023 17:15:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5167,7 +5266,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afb0b8ee-10a9-46f3-bf47-023dd610a9b2 + - cc5b84c3-a744-4696-b9e7-5be535948ff8 status: 200 OK code: 200 duration: "" @@ -5178,19 +5277,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd139a05-39cf-4f92-9011-a67c8fda9c81 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"created_at":"2023-10-17T13:08:50.414671Z","dhcp_enabled":true,"id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-17T13:08:50.414671Z","id":"093f01a1-07bc-4e3f-8fa7-5482a1c3f341","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:52.080087Z"},{"created_at":"2023-10-17T13:08:50.414671Z","id":"ea92eda5-047f-45f5-b1ed-80e8492fcfed","subnet":"fd63:256c:45f7:b55e::/64","updated_at":"2023-10-17T13:14:52.084038Z"}],"tags":[],"updated_at":"2023-10-17T13:14:55.617782Z","vpc_id":"0c47cef9-3c4e-4f7c-b54c-6c214b713074"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "719" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:17 GMT + - Wed, 18 Oct 2023 17:15:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5200,7 +5299,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dbc8154-8dd4-462a-8ec5-0acf71983df6 + - c4b483bd-495c-4827-bb5d-956302193e7e status: 200 OK code: 200 duration: "" @@ -5211,19 +5310,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T13:18:16.553942Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "612" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:17 GMT + - Wed, 18 Oct 2023 17:15:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5233,7 +5332,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5739ff97-f959-4719-bd47-a877d186b2b9 + - c9219619-2761-477b-b365-9f1071aa924d status: 200 OK code: 200 duration: "" @@ -5244,19 +5343,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/nodes?order_by=created_at_asc&pool_id=fbb597b5-6889-4f92-a3c5-0098ac9cbb5a&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"nodes":[{"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T13:15:00.189680Z","error_message":null,"id":"af29284c-5f14-4005-a115-df2e788b2952","name":"scw-test-k8s-public-ip-pool-af29284c5f144005a1","pool_id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","provider_id":"scaleway://instance/fr-par-1/56c5a04b-f36e-4886-84df-a988825557d9","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T13:18:16.543047Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "645" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:17 GMT + - Wed, 18 Oct 2023 17:15:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5266,7 +5365,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83141178-6a33-4dc0-a71a-d4a7b4674757 + - 08f3d1a0-31a9-404c-97e2-3d43006eaee8 status: 200 OK code: 200 duration: "" @@ -5277,23 +5376,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56c5a04b-f36e-4886-84df-a988825557d9 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-10-17T13:15:00.888044+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scw-test-k8s-public-ip-pool-af29284c5f144005a1","id":"56c5a04b-f36e-4886-84df-a988825557d9","image":{"arch":"x86_64","creation_date":"2023-10-05T10:50:51.838301+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"8795d4a3-0918-41f3-b119-03a7effbdd8f","modification_date":"2023-10-05T11:06:46.734414+00:00","name":"k8s_base_node_2023-09-27.6","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"23e4a5ca-9587-4556-8eee-34cafe7b43cc","name":"k8s_base_node_2023-09-27.6","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"25","hypervisor_id":"501","node_id":"1","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:2b:25","maintenances":[],"modification_date":"2023-10-17T13:15:17.795120+00:00","name":"scw-test-k8s-public-ip-pool-af29284c5f144005a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.66.22.1","private_nics":[{"creation_date":"2023-10-17T13:15:01.559654+00:00","id":"a9a38b93-fea0-4d3a-8e9c-e46ff409629d","mac_address":"02:00:00:14:46:bc","modification_date":"2023-10-17T13:15:04.903968+00:00","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","server_id":"56c5a04b-f36e-4886-84df-a988825557d9","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"367cd10b-9846-41b6-8d9b-abcd08b16fef","name":"kubernetes - 44bfce9e-f575-4ef5-a6aa-7f129922213a"},"state":"running","state_detail":"booting - kernel","tags":["kapsule=44bfce9e-f575-4ef5-a6aa-7f129922213a","pool=fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","pool-name=pool","runtime=containerd","managed=true","node=af29284c-5f14-4005-a115-df2e788b2952"],"volumes":{"0":{"boot":false,"creation_date":"2023-10-17T13:15:00.888044+00:00","export_uri":null,"id":"f0e7d9b0-fd5c-4cb1-a48c-35105717487d","modification_date":"2023-10-17T13:15:00.888044+00:00","name":"k8s_base_node_2023-09-27.6","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"56c5a04b-f36e-4886-84df-a988825557d9","name":"scw-test-k8s-public-ip-pool-af29284c5f144005a1"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "3464" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:17 GMT + - Wed, 18 Oct 2023 17:15:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5303,7 +5398,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d05cccd8-273d-41e4-b434-4c02411f8810 + - b47840b4-6d84-44c9-9e64-34f9be83d4b2 status: 200 OK code: 200 duration: "" @@ -5314,19 +5409,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/b28823e9-af42-4590-99af-5fb5f997504c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "586" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:19 GMT + - Wed, 18 Oct 2023 17:15:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5336,7 +5431,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 386d8258-e3bb-428d-a861-0926e013cc6e + - e4aa5c32-3c16-4b7e-a730-30e6d1fecab9 status: 200 OK code: 200 duration: "" @@ -5347,19 +5442,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":"02:00:00:14:46:BB","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"ready","updated_at":"2023-10-17T13:14:55.908417Z","zone":"fr-par-1"}],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:55.996721Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1936" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:19 GMT + - Wed, 18 Oct 2023 17:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5369,7 +5464,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f5778bd-d673-4eed-a2e9-f3d31271d582 + - 8e9b8ce1-27a0-420f-ba4a-7fe40cdf64a4 status: 200 OK code: 200 duration: "" @@ -5380,19 +5475,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd139a05-39cf-4f92-9011-a67c8fda9c81 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"created_at":"2023-10-17T13:08:50.414671Z","dhcp_enabled":true,"id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-17T13:08:50.414671Z","id":"093f01a1-07bc-4e3f-8fa7-5482a1c3f341","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:52.080087Z"},{"created_at":"2023-10-17T13:08:50.414671Z","id":"ea92eda5-047f-45f5-b1ed-80e8492fcfed","subnet":"fd63:256c:45f7:b55e::/64","updated_at":"2023-10-17T13:14:52.084038Z"}],"tags":[],"updated_at":"2023-10-17T13:14:55.617782Z","vpc_id":"0c47cef9-3c4e-4f7c-b54c-6c214b713074"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "719" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:19 GMT + - Wed, 18 Oct 2023 17:16:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5402,7 +5497,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6168ae43-8350-48ca-a23a-299df23fc0e7 + - e0c0ec9c-5e83-489f-9591-18eaf2db846a status: 200 OK code: 200 duration: "" @@ -5413,19 +5508,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/db0a2bca-b1cf-4af1-945d-ceaecf3805e5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":"02:00:00:14:46:BB","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"ready","updated_at":"2023-10-17T13:14:55.908417Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "976" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:19 GMT + - Wed, 18 Oct 2023 17:16:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5435,7 +5530,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7489fb3-63ad-4bc2-b474-cc3e75e6ac56 + - 532c3050-be47-491e-bed7-3aa1f4b3f673 status: 200 OK code: 200 duration: "" @@ -5446,19 +5541,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":"02:00:00:14:46:BB","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"ready","updated_at":"2023-10-17T13:14:55.908417Z","zone":"fr-par-1"}],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:55.996721Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1936" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:19 GMT + - Wed, 18 Oct 2023 17:16:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5468,7 +5563,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df23341b-14d3-4fc0-979e-8a5507b34f71 + - 6049e239-15f7-48cb-a70e-8c9ba2124153 status: 200 OK code: 200 duration: "" @@ -5479,19 +5574,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/db0a2bca-b1cf-4af1-945d-ceaecf3805e5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":"02:00:00:14:46:BB","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"ready","updated_at":"2023-10-17T13:14:55.908417Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "976" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:19 GMT + - Wed, 18 Oct 2023 17:16:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5501,7 +5596,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4724f7e5-26e3-4fb3-9058-579620c7d31e + - 76efb682-448f-4266-ad41-bef6e2d123b9 status: 200 OK code: 200 duration: "" @@ -5512,19 +5607,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:09:47.405071Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1500" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:19 GMT + - Wed, 18 Oct 2023 17:16:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5534,7 +5629,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 556604d0-5738-4552-9cfa-03c8b31f3879 + - 4c32a7c6-c4c4-450f-a541-61a93354bb55 status: 200 OK code: 200 duration: "" @@ -5545,19 +5640,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPYWtWNlRVUm5NVTB4YjFoRVZFMTZUVlJCZUU1cVJYcE5SR2N4VFRGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUR1kzQ2xkb1RubFdRbk5HUTFKa2RFa3hTRUZpVW1rMWVtaGpUMnN6UzJkc1dIQXlRMjh5TW1adWIyNDBabFpVUWpoTFoxUTJiV0ZvUjFkMGJrdDRWMEZETDNvS1prSnpZMFZJTTNKV09HRXZXWFJHY1hKclZGa3pPRVYxZEhFd1RraHZZWFVyZVdZM01FVXdZWFpvYkhONlltMHdTbnBoTXpOeVJIQlRhMUpZY0hObGVBcFBSbmRqVkRrelRFdzVPRWQ1WTJndlpuRTBUV1pQWm1kR1lXaDVOV3d6VlZaR09Dc3ZRVEEyUnpFMFNXVklkVlZPTW01RVVGTkZOM0puY0dsWldGWXpDa2w0T1dneGVWVlRUVkpoV1dsRU4ydFpSelZ0YW14UmJYZHNhRVJ2TUM5VVpFMTZXbEJKZW5GV1UyVnVLM0pOUkZFelVHeExRMUYzSzJ0SVJHRXhWbkFLU25wT1dVRmpOREUyWmt0VE1rSk9WREpHYUVOdVIxVTBORTl0Ymt4Vk1UWlRNR3ROUlhaNVNXRlhjR2wwU2twU1MwaFpRa3RCUTNObUwxSkxhbGhKZVFwM1pESnhaVXBwTkM5c1JXb3JlbEppU2l0elEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaRVREQkZMM1F6WjFGTlMwUlRNM0ZtV25CaldHVkhVRWxwYkZwTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFR6UjNjV0ZvTW5CWk5qSjJSRE5pZGxNek9WaHVSRmt3YW5kd1JHTjNkaTlQZG0xNFZVUlFXblJvUjFCVVpFcHJOUXByTmtGTlRHb3hWRmN3UjI4MFJHUXhUVlpsZURONlMybHJkM05HVG5WcGJVTkdXVGw0VDBOM1drOXFTR0pwWWpSNlVYVXhjVVYxVUdoWGJtRkNaVGxhQ2xaaWEzbENOR1Y0ZGpWblowcGxUMnQyT1ZGNU9XWnFTM1pNYVZkaE4wTXZiMk41VGtkWldqWXhXRlkzVW14c2FFWjRjVkJpVkZoclZuZDRXRXRPZVc0S1VtbzVZVlpZT1VWdmJsTmtaRk5XY2pCTU5UTjZkMkp2UmpsQlRIQXdNRlpYT0VaSFNsRnVTbGN4T0doTlNYTjJWWFJOYmxaeFdGSTBkMlpGUzJaUE1ncGthVWQ2YzNkYWNFSTJWazlKY3pGQk4xbGxlVzluYm5CVE1rWjFZbXRDVW5SRFVERkNjR2RWUnpCQ1NuVTBVekZQU0RaNFYwcHhaa0pxUVhjd01XNUhDamR5V0VoWlIzbG9NRnBXV2twR1lreDVORWs0UVZvelRrcEVPVFJKUlVacU5rVmxkQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDRiZmNlOWUtZjU3NS00ZWY1LWE2YWEtN2YxMjk5MjIyMTNhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBCZWl3aUFWNFFDbkFaT1JtcUNDMTFYQUJ4aE1jRURlM0pWVWx4Y2s1VmJDWlFqSE56aHg4UExFYg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2638" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:19 GMT + - Wed, 18 Oct 2023 17:16:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5567,7 +5662,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58cfd2e7-c6fa-4cb9-8f4d-e1044cc24c68 + - f30a7a62-3e0f-4d43-aaf5-ce4b1aed7e60 status: 200 OK code: 200 duration: "" @@ -5578,19 +5673,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T13:18:16.553942Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "612" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:19 GMT + - Wed, 18 Oct 2023 17:16:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5600,7 +5695,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6966c38-aa27-49c3-ae12-b203fdd64177 + - bae933dc-357b-49e8-8133-0d241e5dda09 status: 200 OK code: 200 duration: "" @@ -5611,19 +5706,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a/nodes?order_by=created_at_asc&page=1&pool_id=fbb597b5-6889-4f92-a3c5-0098ac9cbb5a&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"nodes":[{"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-17T13:15:00.189680Z","error_message":null,"id":"af29284c-5f14-4005-a115-df2e788b2952","name":"scw-test-k8s-public-ip-pool-af29284c5f144005a1","pool_id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","provider_id":"scaleway://instance/fr-par-1/56c5a04b-f36e-4886-84df-a988825557d9","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T13:18:16.543047Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "645" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:19 GMT + - Wed, 18 Oct 2023 17:16:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5633,7 +5728,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 401aa9f5-7971-4465-bbc5-ea4a087c1a44 + - 667ee9fd-ef52-4a9f-903c-33bc43186d7a status: 200 OK code: 200 duration: "" @@ -5644,19 +5739,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/fbb597b5-6889-4f92-a3c5-0098ac9cbb5a - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 + method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","container_runtime":"containerd","created_at":"2023-10-17T13:14:59.694668Z","id":"fbb597b5-6889-4f92-a3c5-0098ac9cbb5a","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-17T13:18:21.829517626Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "618" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:21 GMT + - Wed, 18 Oct 2023 17:16:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5666,7 +5761,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51c8a049-ef4d-41f9-b58f-d0c535b85f18 + - b76704e9-ad2f-439c-8b2d-4d0992afa456 status: 200 OK code: 200 duration: "" @@ -5677,19 +5772,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a?with_additional_resources=true - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:18:21.904596548Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1506" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:21 GMT + - Wed, 18 Oct 2023 17:16:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5699,7 +5794,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 063eb002-d37f-49da-a4dc-c670acf95fc1 + - ef880fe5-28bb-453e-a321-66ea6a18ed16 status: 200 OK code: 200 duration: "" @@ -5710,19 +5805,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:18:21.904597Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1503" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:22 GMT + - Wed, 18 Oct 2023 17:16:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5732,7 +5827,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c08fc0be-9df6-4b3f-906d-f95d62fb9112 + - 7182e96c-ef86-4364-91ea-1992353691de status: 200 OK code: 200 duration: "" @@ -5743,19 +5838,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:18:21.904597Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1503" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:27 GMT + - Wed, 18 Oct 2023 17:17:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5765,7 +5860,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55da58c2-ef50-4bb4-a136-f2ba08394a23 + - 1e589253-2f98-4c03-8ed0-546882d8e6bd status: 200 OK code: 200 duration: "" @@ -5776,19 +5871,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:18:21.904597Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1503" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:32 GMT + - Wed, 18 Oct 2023 17:17:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5798,7 +5893,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfbf890e-4931-4a40-b54b-ebcd8889bc51 + - 35759bab-1d31-48fe-b2c0-4c652230329e status: 200 OK code: 200 duration: "" @@ -5809,19 +5904,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:18:21.904597Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1503" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:37 GMT + - Wed, 18 Oct 2023 17:17:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5831,7 +5926,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc3ef622-9934-40bc-9776-9b802649da5e + - c0e8d7d3-075d-4af4-9e35-72cc23b607d1 status: 200 OK code: 200 duration: "" @@ -5842,19 +5937,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://44bfce9e-f575-4ef5-a6aa-7f129922213a.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T13:08:51.541936Z","created_at":"2023-10-17T13:08:51.541936Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.44bfce9e-f575-4ef5-a6aa-7f129922213a.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-17T13:18:21.904597Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1503" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:42 GMT + - Wed, 18 Oct 2023 17:17:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5864,7 +5959,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21fad2fd-0d45-4300-99b7-55bbe3c9ac16 + - e268288a-a5a6-4d69-a5bc-62668e7b27db status: 200 OK code: 200 duration: "" @@ -5875,19 +5970,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","type":"not_found"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "128" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:47 GMT + - Wed, 18 Oct 2023 17:17:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5897,9 +5992,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7010ff8f-2479-4a16-8f18-8ae9e801af7d - status: 404 Not Found - code: 404 + - cf4b3f0e-5d43-452c-b688-045a3fde4cc0 + status: 200 OK + code: 200 duration: "" - request: body: "" @@ -5908,19 +6003,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/db0a2bca-b1cf-4af1-945d-ceaecf3805e5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":"02:00:00:14:46:BB","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"ready","updated_at":"2023-10-17T13:14:55.908417Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "976" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:47 GMT + - Wed, 18 Oct 2023 17:17:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5930,7 +6025,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bceb9541-cf74-46c7-aaed-0191b4dce7f5 + - 8a864f2c-953e-439b-a281-af9de797919f status: 200 OK code: 200 duration: "" @@ -5941,17 +6036,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/db0a2bca-b1cf-4af1-945d-ceaecf3805e5?cleanup_dhcp=false - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 + method: GET response: - body: "" + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T17:12:32.693869Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: + Content-Length: + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:47 GMT + - Wed, 18 Oct 2023 17:17:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5961,9 +6058,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad276bf6-f326-4c17-94ed-3c84b4717824 - status: 204 No Content - code: 204 + - 16497050-c5eb-43f7-9ee9-8fd4dd4d33e1 + status: 200 OK + code: 200 duration: "" - request: body: "" @@ -5972,19 +6069,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/db0a2bca-b1cf-4af1-945d-ceaecf3805e5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"address":null,"created_at":"2023-10-17T13:14:53.394376Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-17T13:14:45.676131Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b28823e9-af42-4590-99af-5fb5f997504c","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-17T13:14:45.676131Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","mac_address":"02:00:00:14:46:BB","private_network_id":"cd139a05-39cf-4f92-9011-a67c8fda9c81","status":"detaching","updated_at":"2023-10-17T13:18:47.374289Z","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T17:17:33.680749Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "980" + - "612" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:47 GMT + - Wed, 18 Oct 2023 17:17:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5994,7 +6091,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db0992e7-4957-4685-9922-3c017b73ef4e + - 4f4d8237-ff27-4cb7-a5fc-d06a4f4b3e35 status: 200 OK code: 200 duration: "" @@ -6005,19 +6102,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/db0a2bca-b1cf-4af1-945d-ceaecf3805e5 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 method: GET response: - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"db0a2bca-b1cf-4af1-945d-ceaecf3805e5","type":"not_found"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T17:17:33.680749Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "136" + - "612" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:52 GMT + - Wed, 18 Oct 2023 17:17:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6027,9 +6124,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30be3ee6-75ab-473a-9254-e36636fd095d - status: 404 Not Found - code: 404 + - 84b39ebc-3d99-4cbc-aefa-b499f633c4ed + status: 200 OK + code: 200 duration: "" - request: body: "" @@ -6038,19 +6135,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/nodes?order_by=created_at_asc&page=1&pool_id=6b6234af-3545-4aa1-b11f-ef98a2b77e67&status=unknown method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:55.996721Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T17:12:33.325563Z","error_message":null,"id":"62415402-e0fd-4809-9d91-f229848ec235","name":"scw-test-k8s-public-ip-pool-62415402e0fd48099d","pool_id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","provider_id":"scaleway://instance/fr-par-1/dc1ad339-95cd-4a89-9f88-c5d55cfb30ba","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T17:17:33.664899Z"}],"total_count":1}' headers: Content-Length: - - "960" + - "645" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:52 GMT + - Wed, 18 Oct 2023 17:17:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6060,7 +6157,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa4bfb24-9965-49f1-a326-610db0976aea + - 88f0975d-0bfd-4f33-bdc6-acfbc2addade status: 200 OK code: 200 duration: "" @@ -6071,19 +6168,1011 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-17T13:14:46.350480Z","gateway_networks":[],"id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","ip":{"address":"51.15.194.85","created_at":"2023-10-17T13:14:46.329226Z","gateway_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","id":"e19d42af-22a8-451a-9e50-00b2e4c456d3","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"85-194-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-17T13:14:46.329226Z","zone":"fr-par-1"},"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-17T13:14:55.996721Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:07:10.949789Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "960" + - "1500" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c70d459-199a-4c07-bb36-790d9a53f04c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b27b50b7-86ff-406e-b08b-de82de78fe7a + method: GET + response: + body: '{"created_at":"2023-10-18T17:05:38.963133Z","dhcp_enabled":true,"id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:05:38.963133Z","id":"b6f618ae-5f6f-4745-acbc-66e1cba782d7","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:25.636357Z"},{"created_at":"2023-10-18T17:05:38.963133Z","id":"385347c4-de12-4c0f-ab0e-d6fc33b70b07","subnet":"fd63:256c:45f7:2b74::/64","updated_at":"2023-10-18T17:12:25.643032Z"}],"tags":[],"updated_at":"2023-10-18T17:12:28.761724Z","vpc_id":"3f025108-2715-4c51-98eb-61df2d52ec49"}' + headers: + Content-Length: + - "719" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d0ddbf6-ff13-400a-b100-46ee0e40842e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T17:17:33.680749Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "612" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5701a659-3596-4f1c-a01f-bae79c3edf9d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/nodes?order_by=created_at_asc&pool_id=6b6234af-3545-4aa1-b11f-ef98a2b77e67&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T17:12:33.325563Z","error_message":null,"id":"62415402-e0fd-4809-9d91-f229848ec235","name":"scw-test-k8s-public-ip-pool-62415402e0fd48099d","pool_id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","provider_id":"scaleway://instance/fr-par-1/dc1ad339-95cd-4a89-9f88-c5d55cfb30ba","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T17:17:33.664899Z"}],"total_count":1}' + headers: + Content-Length: + - "645" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 325dc8c5-4f7f-4933-a294-7bb55c4dbd13 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dc1ad339-95cd-4a89-9f88-c5d55cfb30ba + method: GET + response: + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"GP1-XS","creation_date":"2023-10-18T17:12:33.904220+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scw-test-k8s-public-ip-pool-62415402e0fd48099d","id":"dc1ad339-95cd-4a89-9f88-c5d55cfb30ba","image":{"arch":"x86_64","creation_date":"2023-10-17T13:58:22.900323+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"058ec9bf-0cd8-4b2d-a68e-cb7578338a88","modification_date":"2023-10-17T14:08:43.096919+00:00","name":"k8s_base_node_2023-10-11.1","organization":"d3009bdc-497e-4b60-a785-1abfad8740ca","project":"d3009bdc-497e-4b60-a785-1abfad8740ca","public":true,"root_volume":{"id":"84ef0475-6a5a-4ab4-9acd-8e5855eee050","name":"k8s_base_node_2023-10-11.1","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1702","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:5e:4f","maintenances":[],"modification_date":"2023-10-18T17:12:48.110756+00:00","name":"scw-test-k8s-public-ip-pool-62415402e0fd48099d","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":"10.66.72.73","private_nics":[{"creation_date":"2023-10-18T17:12:34.559921+00:00","id":"9381fddd-3982-475b-8eb3-814f39e16e53","mac_address":"02:00:00:14:4d:5c","modification_date":"2023-10-18T17:12:37.176997+00:00","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","server_id":"dc1ad339-95cd-4a89-9f88-c5d55cfb30ba","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"92e3a255-acd6-4ef5-bc55-ba14ba229683","name":"kubernetes + 4f82f936-189f-46c3-b063-e7b2af051c79"},"state":"running","state_detail":"booting + kernel","tags":["kapsule=4f82f936-189f-46c3-b063-e7b2af051c79","pool=6b6234af-3545-4aa1-b11f-ef98a2b77e67","pool-name=pool","runtime=containerd","managed=true","node=62415402-e0fd-4809-9d91-f229848ec235"],"volumes":{"0":{"boot":false,"creation_date":"2023-10-18T17:12:33.904220+00:00","export_uri":null,"id":"a6b4ed5a-e698-4b3a-9405-8f66699d6391","modification_date":"2023-10-18T17:12:33.904220+00:00","name":"k8s_base_node_2023-10-11.1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","server":{"id":"dc1ad339-95cd-4a89-9f88-c5d55cfb30ba","name":"scw-test-k8s-public-ip-pool-62415402e0fd48099d"},"size":150000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "3466" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5309781a-1ad8-4e27-933f-29f4cd024a22 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/8488fefa-e9b0-4874-9796-d69f72ea632b + method: GET + response: + body: '{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + headers: + Content-Length: + - "586" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f51f9d79-09d9-40d2-95f9-fe006ac6a5ae + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 + method: GET + response: + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":"02:00:00:14:4D:5A","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"ready","updated_at":"2023-10-18T17:12:29.107374Z","zone":"fr-par-1"}],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:29.202280Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + headers: + Content-Length: + - "1976" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b49a421-0fce-49b7-a45a-805211d12078 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b27b50b7-86ff-406e-b08b-de82de78fe7a + method: GET + response: + body: '{"created_at":"2023-10-18T17:05:38.963133Z","dhcp_enabled":true,"id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:05:38.963133Z","id":"b6f618ae-5f6f-4745-acbc-66e1cba782d7","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:25.636357Z"},{"created_at":"2023-10-18T17:05:38.963133Z","id":"385347c4-de12-4c0f-ab0e-d6fc33b70b07","subnet":"fd63:256c:45f7:2b74::/64","updated_at":"2023-10-18T17:12:25.643032Z"}],"tags":[],"updated_at":"2023-10-18T17:12:28.761724Z","vpc_id":"3f025108-2715-4c51-98eb-61df2d52ec49"}' + headers: + Content-Length: + - "719" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 07daa29a-e73a-4a45-9d22-04856d2c3fd8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4 + method: GET + response: + body: '{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":"02:00:00:14:4D:5A","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"ready","updated_at":"2023-10-18T17:12:29.107374Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "996" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5c93e3d-9b46-4a65-9d81-ce4544192383 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 + method: GET + response: + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":"02:00:00:14:4D:5A","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"ready","updated_at":"2023-10-18T17:12:29.107374Z","zone":"fr-par-1"}],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:29.202280Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + headers: + Content-Length: + - "1976" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0fe8d54d-118e-4911-897d-d84b35cdab1c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4 + method: GET + response: + body: '{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":"02:00:00:14:4D:5A","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"ready","updated_at":"2023-10-18T17:12:29.107374Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "996" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3ee5956c-2528-4bc4-a36d-76ea6737a791 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:07:10.949789Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1500" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d95892f-ebfa-4810-8271-a3116851d7d9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtazhzLXB1YmxpYy1pcCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVelRVUlZNRTFzYjFoRVZFMTZUVlJCZUU1NlJUTk5SRlV3VFd4dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUMjl4Q2xrNFNIaDRhR3M1UkVreE56TjNZMGd4ZVRnemMzcFhiWFpFZDJ0d2FrOVhVRXhxTDFwa05scEZjSE5FWlRoalpVMVNOVUZYUWxwNVExWjFaRUpXVUhrS1VXWlFUVXRQUTNkRGQwRjFaekJpVldFelIwZE1UREZoVldkWFUwd3dlbkZRY0dsTGRtMUxTRXhtTkV4cVVHcE1VRGxaZUdKTFYyMWFPRGRXVjBVelRncEJRM3B0VTNGQk9VYzJNa1U1UjFGNVJYWkhRbHBJWW1sWksza3lkV0pLVVhWQmJHbFpSMG94ZUZNMVVWbGxhRTFSU25GSFJIQXhSMDg1ZDJSeU5VZHlDbmc1TDJKdmVqQmpPR3Q2TmxoT1NucFZSblJOZUU0NFpEQXZaVlZwUjBNMmFTdHBSMU5GVFU0eWEwUkhjVW8yTW1NMU4yaDJXbk40UTJZek1HUTFVbXNLWjB0NFQwRXpaVWhLVFVwNFQyMXpabEJLUjNoUVFubDJVR1FyU2tkaVJuUlZkME5SVkhkbVluTnFTSGRuSzFOYVJXczRSVkl2U0RsdlJVbHRWa3hyZUFwbFFtazNTMUUwSzIxRmVVWTVNelU0WVZjd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUGJUWTRTbUZsWm1GclZWUm9SMDR2UkhFMVIwNUtWVXBNV1VoTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQmNFeDBaVnBFWm1veFMyeDVkV3hIV1U5SmJrbDNlRlpDZVhFM1RYQnRZa3gyUVRkeFNFcFNTaTg1YUV4emRWSkpWd3ByUVRaUVVVZHBhemRVYzJGdFQwUlVOU3Q0ZDBRck1rY3daRzB5Vm5KSlkyRkdSVzAyYjJJNVpHeDNiRkJ2WjFwRU1rZFBTVFo1UVVWcVdWZFdiWFpqQ20xeGEweEpaRGR6UkRWb01EbHVURmhoVGt4aFZUbHRZblYyT1d3MGFXbExPVmw0VFcxQk1WQlJUbUptUjBOTGJYbHVPREpoYVVsTU9XMTBiRkFyYUVnS1VIcFZNbVp5TmxkemNTOU9ibEo1VkZOaWIyZ3haVkJ5TmpOV2JGazVkazk2YkROTWVVUnlaMnR1UldnNFFVaHpVVGxvYlRaVUx6aFBXR2xTUzBjNGNRbzRiV2xMVHk5eFprMW5NWFZzZVRJMmNuZFBiV1ZVVmk5TVdITktNbmRCUldJeU5rTndXR3hMZEdWWVYyc3phRGxDVUVSYVlYcG1TMGh2WTNWNWFWbHVDbFZJU1ROdVIzTTNUQzlvWVhaeVF6QkhUVkYwZVdzNFIydFBkbU5vVDJOQk4zQjZVd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNGY4MmY5MzYtMTg5Zi00NmMzLWIwNjMtZTdiMmFmMDUxYzc5LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtazhzLXB1YmxpYy1pcAogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1rOHMtcHVibGljLWlwIgogICAgdXNlcjogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1rOHMtcHVibGljLWlwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1rOHMtcHVibGljLWlwLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBDT2FQVE5idURiSFpYY3pBbDhKWTN6R29UeTZFeXlWWjNPMkE3YXBpWE1TVm9MclhFaThkdmR5SA==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2638" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c9f43dd7-2fe1-4588-91d6-60860643a165 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T17:17:33.680749Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "612" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a28a7d7-3d52-49b6-9251-c995d5fd2319 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79/nodes?order_by=created_at_asc&page=1&pool_id=6b6234af-3545-4aa1-b11f-ef98a2b77e67&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T17:12:33.325563Z","error_message":null,"id":"62415402-e0fd-4809-9d91-f229848ec235","name":"scw-test-k8s-public-ip-pool-62415402e0fd48099d","pool_id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","provider_id":"scaleway://instance/fr-par-1/dc1ad339-95cd-4a89-9f88-c5d55cfb30ba","public_ip_v4":"","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T17:17:33.664899Z"}],"total_count":1}' + headers: + Content-Length: + - "645" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84a74d61-111f-4016-ba2b-7bd46911ceca + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/6b6234af-3545-4aa1-b11f-ef98a2b77e67 + method: DELETE + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"4f82f936-189f-46c3-b063-e7b2af051c79","container_runtime":"containerd","created_at":"2023-10-18T17:12:32.687164Z","id":"6b6234af-3545-4aa1-b11f-ef98a2b77e67","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":true,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-18T17:17:40.003127793Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "618" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b7cb944-dbe8-44a7-add5-24643e157f44 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79?with_additional_resources=true + method: DELETE + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:17:40.121580370Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1506" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a7db918c-910c-4f31-80e3-3b3e686a3e88 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:17:40.121580Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1503" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 08a4f3ff-5de9-45ed-a7ec-28c5c2b9cb38 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:17:40.121580Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1503" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a090c4b-227e-4676-9b72-5a48cf36ff4f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:17:40.121580Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1503" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d721bc0-07eb-42f5-8f52-010f0209aee2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:17:40.121580Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1503" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:17:55 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 595a6e97-7f7e-44f0-ace8-f55ff473c5bc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:17:40.121580Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1503" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:18:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52de512f-244f-43cb-a1ed-2d2714564b14 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:17:40.121580Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1503" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:18:05 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2608dbe6-d6a7-4ab3-a9a6-89c320ec2934 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f82f936-189f-46c3-b063-e7b2af051c79.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T17:05:41.115898Z","created_at":"2023-10-18T17:05:41.115898Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f82f936-189f-46c3-b063-e7b2af051c79.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f82f936-189f-46c3-b063-e7b2af051c79","ingress":"none","name":"test-k8s-public-ip","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","public_ip"],"type":"kapsule","updated_at":"2023-10-18T17:17:40.121580Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1503" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:18:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 07c43d17-1873-4d90-8c36-91a5b5239fce + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 + method: GET + response: + body: '{"message":"resource is not found","resource":"cluster","resource_id":"4f82f936-189f-46c3-b063-e7b2af051c79","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:18:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a7379869-2b36-4d23-a23b-834329cc662b + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4 + method: GET + response: + body: '{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":"02:00:00:14:4D:5A","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"ready","updated_at":"2023-10-18T17:12:29.107374Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "996" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:18:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a15d3997-3901-492b-bc6e-cc9797018141 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4?cleanup_dhcp=false + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:18:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6e86892c-57cd-485e-908e-df125bbbd6f0 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4 + method: GET + response: + body: '{"address":null,"created_at":"2023-10-18T17:12:26.924175Z","dhcp":{"address":"192.168.0.1","created_at":"2023-10-18T17:12:19.486701Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"8488fefa-e9b0-4874-9796-d69f72ea632b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","pool_high":"192.168.3.254","pool_low":"192.168.0.2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.0.0/22","updated_at":"2023-10-18T17:12:19.486701Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","ipam_config":null,"mac_address":"02:00:00:14:4D:5A","private_network_id":"b27b50b7-86ff-406e-b08b-de82de78fe7a","status":"detaching","updated_at":"2023-10-18T17:18:15.943301Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1000" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:18:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dc7243c2-f398-48af-a4c8-fc1943a019ac + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4 + method: GET + response: + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"9bec2bc2-3cd3-475d-aa88-056cc9a6d7a4","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:18:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 36e3e339-4174-4851-8944-200296fc9106 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 + method: GET + response: + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:29.202280Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + headers: + Content-Length: + - "980" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 17:18:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ded15f45-3324-4070-a302-0fb2625f494c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 + method: GET + response: + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-18T17:12:20.078194Z","gateway_networks":[],"id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","ip":{"address":"51.15.224.248","created_at":"2023-10-18T17:12:20.064132Z","gateway_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","id":"349cc528-45f1-4aac-a1ad-65ea6a66aa50","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"248-224-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-18T17:12:20.064132Z","zone":"fr-par-1"},"is_legacy":true,"name":"test-k8s-public-ip","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-18T17:12:29.202280Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + headers: + Content-Length: + - "980" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:52 GMT + - Wed, 18 Oct 2023 17:18:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6093,7 +7182,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 482f8667-6ead-4224-b0ea-d5d905fd0689 + - 209403dc-efa7-467a-8228-459a1b338e38 status: 200 OK code: 200 duration: "" @@ -6104,7 +7193,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/b28823e9-af42-4590-99af-5fb5f997504c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/8488fefa-e9b0-4874-9796-d69f72ea632b method: DELETE response: body: "" @@ -6114,7 +7203,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:52 GMT + - Wed, 18 Oct 2023 17:18:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6124,7 +7213,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fac1135-e561-46f9-a0ae-3f70b9558758 + - f50f60d2-44d8-45d7-b970-6b447bfc7380 status: 204 No Content code: 204 duration: "" @@ -6135,7 +7224,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df?cleanup_dhcp=false + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54?cleanup_dhcp=false method: DELETE response: body: "" @@ -6145,7 +7234,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:52 GMT + - Wed, 18 Oct 2023 17:18:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6155,7 +7244,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac5cab78-ef60-4eed-a5e1-36c14d4705ec + - 9711ea54-5100-4a20-aa32-4ab075a610bf status: 204 No Content code: 204 duration: "" @@ -6166,10 +7255,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/b5052db0-b31a-41bb-a59b-237e4fd5f7df + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/5b346518-375f-4ecb-95ec-0e48b3b50d54 method: GET response: - body: '{"message":"resource is not found","resource":"gateway","resource_id":"b5052db0-b31a-41bb-a59b-237e4fd5f7df","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"5b346518-375f-4ecb-95ec-0e48b3b50d54","type":"not_found"}' headers: Content-Length: - "128" @@ -6178,7 +7267,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:52 GMT + - Wed, 18 Oct 2023 17:18:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6188,7 +7277,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe478889-1b02-4f97-b9b9-18cf276da4d0 + - 7ee42e7e-72d3-493f-bb95-a1f49a82d07f status: 404 Not Found code: 404 duration: "" @@ -6199,7 +7288,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd139a05-39cf-4f92-9011-a67c8fda9c81 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b27b50b7-86ff-406e-b08b-de82de78fe7a method: DELETE response: body: "" @@ -6209,7 +7298,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:52 GMT + - Wed, 18 Oct 2023 17:18:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6219,7 +7308,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 374e6751-bf67-41d2-8c2e-c44b7e2e764c + - 62b4a0c9-bce5-4f17-aba2-3e677ffa377c status: 204 No Content code: 204 duration: "" @@ -6230,10 +7319,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/44bfce9e-f575-4ef5-a6aa-7f129922213a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f82f936-189f-46c3-b063-e7b2af051c79 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"44bfce9e-f575-4ef5-a6aa-7f129922213a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"4f82f936-189f-46c3-b063-e7b2af051c79","type":"not_found"}' headers: Content-Length: - "128" @@ -6242,7 +7331,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 13:18:52 GMT + - Wed, 18 Oct 2023 17:18:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6252,7 +7341,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 107b50f7-d262-41d4-bf8b-24b7d9e729fc + - 8080bdb2-447e-491a-ab54-b080f786f948 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-pool-size.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-size.cassette.yaml index cafe5618be..4520890cce 100644 --- a/scaleway/testdata/k8s-cluster-pool-size.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-pool-size.cassette.yaml @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:21 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,7 +34,75 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 062f5764-411d-4dc6-ab29-70ecba874656 + - f7c487ce-7a3b-4021-bf53-70c91238dfd5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-pool-size","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-18T16:35:44.548859Z","dhcp_enabled":true,"id":"da6880df-a94a-4f3e-8277-6150a6853c1c","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.548859Z","id":"d60333a2-6c87-424b-a126-dcd786170153","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:35:44.548859Z"},{"created_at":"2023-10-18T16:35:44.548859Z","id":"e4b70249-f22f-4e9f-93b5-be9c9beb9af7","subnet":"fd63:256c:45f7:de01::/64","updated_at":"2023-10-18T16:35:44.548859Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.548859Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "715" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 17b253b0-f3bd-422d-8081-9d08fbfab6ac + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/da6880df-a94a-4f3e-8277-6150a6853c1c + method: GET + response: + body: '{"created_at":"2023-10-18T16:35:44.548859Z","dhcp_enabled":true,"id":"da6880df-a94a-4f3e-8277-6150a6853c1c","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.548859Z","id":"d60333a2-6c87-424b-a126-dcd786170153","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:35:44.548859Z"},{"created_at":"2023-10-18T16:35:44.548859Z","id":"e4b70249-f22f-4e9f-93b5-be9c9beb9af7","subnet":"fd63:256c:45f7:de01::/64","updated_at":"2023-10-18T16:35:44.548859Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.548859Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "715" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 064b5632-6dd8-4b6d-88c1-9c0dcbd05f9c status: 200 OK code: 200 duration: "" @@ -61,7 +129,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:24 GMT + - Wed, 18 Oct 2023 16:35:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -71,12 +139,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04383a2d-fdf1-4472-b5ff-448c4d4f09fe + - bf24fa55-c0b5-4e00-95a7-d0c2920014b4 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"cluster","description":"","tags":null,"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":{"enable":true,"maintenance_window":{"start_hour":12,"day":"monday"}},"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-size","description":"","tags":null,"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":{"enable":true,"maintenance_window":{"start_hour":12,"day":"monday"}},"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c"}' form: {} headers: Content-Type: @@ -87,16 +155,49 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771124593Z","created_at":"2023-10-17T10:00:26.771124593Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:00:26.799361580Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807899662Z","created_at":"2023-10-18T16:35:45.807899662Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:35:45.822059055Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1458" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e375315-fc43-4b98-908c-c2df2a165323 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:35:45.822059Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1417" + - "1449" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:26 GMT + - Wed, 18 Oct 2023 16:35:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -106,7 +207,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f819e91-41f1-426a-9baa-0690bbe682e4 + - e0d266e6-3aaf-4b6a-8c18-1a19f7bb2a96 status: 200 OK code: 200 duration: "" @@ -117,19 +218,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:00:26.799362Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:35:45.822059Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1408" + - "1449" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:26 GMT + - Wed, 18 Oct 2023 16:35:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -139,7 +240,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b804cd7-0ea0-4515-9d7d-accb7b0cb0d6 + - 1dc59eb3-d548-48c7-b1fd-d0374c7ac976 status: 200 OK code: 200 duration: "" @@ -150,19 +251,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:00:29.181862Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:35:51.674265Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1413" + - "1454" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:31 GMT + - Wed, 18 Oct 2023 16:35:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -172,7 +273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38f18790-25e8-4cae-9ab2-92479ada0a07 + - c0c8324f-e3ad-4997-938f-c1294e47c704 status: 200 OK code: 200 duration: "" @@ -183,19 +284,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:00:29.181862Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:35:51.674265Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1413" + - "1454" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:35:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -205,7 +306,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eb7769d-18e9-48db-866c-070e8bdd4f46 + - 83dd6ade-fddb-46ae-a939-79f735f150c9 status: 200 OK code: 200 duration: "" @@ -216,19 +317,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2FrVjNUVVJCZVU5R2IxaEVWRTE2VFZSQmVFNXFSWGROUkVGNVQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFhGUUNsZ3lXRFZ2ZUhncmRFY3lVVkV6WVRGTWJUSTRLMlJYVG10VEwxbDBRWFp5YVdVeVlXaFVhR2xSVVdscGNVazJibnBTTWpsNWRWZHJkV1ZYY21rMVlqY0tNV3hGZUdGSFlVOVFSWHBrUTBaRU1GWnNVbkF6ZW5NcmVqaElNME0zWjBaVWJUQlhSMWxhVVd0eFExZHFNM0EwZHpobVpGQmpWakJZT1ZsUGJVRlFUZ3B3SzBOMlowUnZiWFZKVGxKUFMxVmtWR3RSZVd4TU5YZDJRM2RFZW5Cd1RVOWlURlJvVDA1a1RHRmFkMVlyVFRadU1GQktiMUp2YjFSQlNUQkxZMGhyQ2psclJucE5ObEJLYlhRMlNEQXJZbEZaYVhONGVHcEZibVJNV2pGUVoyWXhUbkYzWVVoNk0wRm9TakpJUjBKTFVUVktTSGQzZWl0blRuVmxTRW95VERJS1JEZFBLMjQxVEZsd2EwWlVkV3hTWVdKRWEwUTBUMWhJYVRsQmMyVkhTa05OSzFoU1FsUjNhelJDV0RGMmNWcDVlbkJUYkVKSmJsVklPV2QxWVdwVWRBbzNWbVJtV2todU1UTkVTMmxFYTFac2QwaGpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktlVmh3V0hwR2NXZzNlSFZsZDBkcmMwcEdSWFF4ZEhwalRXbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNTV2xXYjA1TEwyMVpXVWx2UXpkaGFVUXpZM2gzUzFCSFdHY3hjV2t4UVZjMWFqQkxZMmxZVG5sSFpUWTJkRGg1VVFweFdGVTFkbkJRVFVwNVVHSjNaMkp3VVRSRlJtUlpaV281VjFnemFYbFpOalZyYjFnMFpXaDNRMmN6YW5oRWFWWm9OWFptZW5RemJYQmpjamxaVVVJMENsaFZUa2hPVlVORlNIUklORGswVGt0QmVrZzJZbVo0TWlzNVNsSkRWbFJXSzFCVWNHZFBOMFV4U1VwNmExaGlWM05yT0hWbWFscFBPVFF4YUZrcmMyMEtiMjFOYnpSeFpuaDJSV1U0YjJweVpXUlZVRzVCT0RkaWNWZEljbk50VTJNeGFVOTNOSEIwYTB0SFJYWjFWalZGVkdKSFJYVjZiV3B2TW5GSVpsbDNhUXBOY1ZGWk5HWnlOaTlOZFdkeWJFdEpXa1psUVZwV1lUTnZURE4xZGk5b2NtWk5TVk5YTmxWeVdIRmpOSGhFZFV0SWVrbFhjMFp4VldWU1oxWlhUbGRCQ2t4VE9XOXNVbmhpY1dsRGVTdFNVa2RTV1ZOalkyVm1ZMUo0T1hCa2ExVnhWMGxMU0FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzViOWI1YTg1LWJiZmMtNDRjNC04OGVjLWY1NDExZDM5NmMxYi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbHVzdGVyIgogICAgdXNlcjogY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAwcUQ5Y1BRd2o0RHdpbGxjUG5rVUk4Y3QzMjZ6cVhoY0hMN3ppMGszM3pRbkZLeHNmZHp5SUh1Qg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VFhwVk1VMVdiMWhFVkUxNlRWUkJlRTU2UlRKTmVsVXhUVlp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlNuTlRDbEJzZDIxeE1FUTVWVzFzTlZwNVVVWnlaRTVZTlZodWIzUkxNMnBEVDJKYVpHRmhlRWgxVWtGbVFXWjFaVTFrYzJkdldrTnVlRFk1VDJJM0wweExhVklLV0RoNWJrSlVObHBEV2xObGJXcG1WMDlwYzFWNU5sSm9iRUZWWnpjMmMxaE9UV05RYldoNU5YbGhPRFl5Y2xoS1pGSllWRGRwVG5wSFNVOTFSVkpvUndwTGNuQnhSbmswVlhoWVpGb3lTSFJuZVVSUFZHWTFZbTFvYm1aMlpVcEJkMVJIWnpkUFQxWjZSMjQ1UVdoRFZHNHlhMUFyTmtsdVUxTXdSbVZwTUN0MENtRm5aRWRWZUhaS2QycE9PV2RGT0M5dFdsTkZkRk5pU1hCWlMwbHJSVGh6WlRaWU9HMHdVRWxOYkRORlMyaGtUSHBuY210RWJsWnlWMEV2WmxkM0x6QUtTa1ZYY1hrNVQydFBWM05ZV0M4eFlXUkdNRTlRYUZkVWJIYzVUbWN3YzJkclVTOU1VVU5MZVRSQ1NqTklXRWMwWldNd1FVaG1OSFZIYzJ0R2VrY3ZhUXBrTkdac2MwdHpSM3B1U1d3dlFYTmxkV3ROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpNVWpsbGNGQTNha0ZuTlVSTFZteHJkSFpJVGxGbVNYcEphMFpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDTkZaQlNWZDNhVlJhZEhGcGFrNTNlSFZoWkZwYVNrVlNNRlU1Wm5adVlreFpTVEZNZFU1NGJURnhUbkJ6WmxGWk9RcHdNblJ3YTJZeGR6bHJOeTlKYXpSS1NsVm5VWFZ2YVZjMGR6QnlkWEJoZVRaekx5dHZjbFpzTlZsdWMwdHVWMHB2U0RabmVrOUNUakZZY1dWaWFFa3pDalV3YTI1SlFsWlVjSGh0WkZkQlZIZFVhVU0yUm1rd05qQXdjVFEyUW0xSmVrc3pMM0EwTjJkQlRWWk9kVU16Ym5SWFNEVnROak5qY0ZGQ1pHZHhWbU1LV2t4d1RYZDFkR3N6VVVaS1JUaGxORVJXZVVsQ2JrRmliRXN6VnpoaGVTOU5kM2R0ZDJsSWRETk5Ta3MwUWpkRWNuRldXRUUwVFRSUVlsRmpOMVJDU2dveWNEaDNhbll3THpobFNqbG5WVTFGUzI4cmVYWnlPVmxKV1U1NlJIbFJRVEpEV1hoMFJWTnpSR0ZTTjJaeWJrcHpZVmM0VmpOTFQxcGpSakpIS3pKQkNqSnBWemt2Y2l0bFRIUjZWVkZtU1hsbGJWWTFWRVJGYjNWbGEyeFNRMFJ3SzBSaVF3b3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9jODJlZDEwNy02YWZiLTRjMzAtYmU1Mi0xMWEzZDczN2U3ODAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBlZ04yR2ZKVjlpTEhNVmIwcERMNkhidFg2aFNBQWJncGpKdEIwVGN6bHprSVRLWEpUV2Y3UVllTA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2550" + - "2606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:35:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -238,7 +339,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a2340bc-b133-4852-a854-9163fba8f8ac + - c80d4b5c-0908-4de5-834f-02bdd6f29fb5 status: 200 OK code: 200 duration: "" @@ -249,19 +350,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:00:29.181862Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:35:51.674265Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1413" + - "1454" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:35:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -271,7 +372,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6c11423-d2cc-4de2-a91d-333c071611c1 + - e0b9b544-5660-4b51-b915-bd09e77cdccb status: 200 OK code: 200 duration: "" @@ -284,10 +385,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b/pools + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780/pools method: POST response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862283Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289255Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "618" @@ -296,7 +397,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:35:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -306,7 +407,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4af73aff-d05f-4820-ba80-e577865d9dc2 + - df3c4744-d5cd-4648-8a78-4bb24421f51a status: 200 OK code: 200 duration: "" @@ -317,10 +418,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -329,7 +430,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:35:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -339,7 +440,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be8bcfa6-7922-4273-91f0-65d9b0d46a87 + - 1b1c2d83-ae68-4239-879e-33e00cbadd21 status: 200 OK code: 200 duration: "" @@ -350,10 +451,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -362,7 +463,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:37 GMT + - Wed, 18 Oct 2023 16:36:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -372,7 +473,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50387969-9c70-42ff-833c-08de1725b1cd + - 16077522-063c-4527-8820-7e18e55225f1 status: 200 OK code: 200 duration: "" @@ -383,10 +484,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -395,7 +496,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:42 GMT + - Wed, 18 Oct 2023 16:36:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -405,7 +506,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48f7aa6d-3147-41ad-903e-270d000aad2d + - fc849cdd-ddd1-4612-b9ee-cf2f40f6367e status: 200 OK code: 200 duration: "" @@ -416,10 +517,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -428,7 +529,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:48 GMT + - Wed, 18 Oct 2023 16:36:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -438,7 +539,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3ee06fa-8853-4043-ad88-bce70b75893d + - 162aa0f6-36b9-44c7-8023-e98174ebdf7d status: 200 OK code: 200 duration: "" @@ -449,10 +550,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -461,7 +562,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:53 GMT + - Wed, 18 Oct 2023 16:36:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -471,7 +572,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f07b328-5504-403c-8441-021c9950b040 + - 698c7f4e-51f7-4e79-b89a-f2983ed641ba status: 200 OK code: 200 duration: "" @@ -482,10 +583,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -494,7 +595,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:59 GMT + - Wed, 18 Oct 2023 16:36:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -504,7 +605,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29d86771-7f2d-4dd4-bd84-c39ee6d4668e + - 5bdeb0fa-21eb-401c-be6b-11c0d6a65053 status: 200 OK code: 200 duration: "" @@ -515,10 +616,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -527,7 +628,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:05 GMT + - Wed, 18 Oct 2023 16:36:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -537,7 +638,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8e9f7d9-134d-4a2d-820e-bad14cce3eab + - adfa1699-4791-473a-9b22-2f4aa62f2524 status: 200 OK code: 200 duration: "" @@ -548,10 +649,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -560,7 +661,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:10 GMT + - Wed, 18 Oct 2023 16:36:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -570,7 +671,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4864dfb3-41a4-4a41-92d1-ca16cdb1fc03 + - 3f31b9ef-c497-42de-8502-6eff8c3c07b2 status: 200 OK code: 200 duration: "" @@ -581,10 +682,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -593,7 +694,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:15 GMT + - Wed, 18 Oct 2023 16:36:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -603,7 +704,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcb88dbd-01d3-4d80-a20b-1d98d3f52d48 + - 9f06d7b9-cecd-4c41-85c3-99b390acb8ac status: 200 OK code: 200 duration: "" @@ -614,10 +715,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -626,7 +727,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:20 GMT + - Wed, 18 Oct 2023 16:36:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -636,7 +737,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dde775e-7c82-4b0e-8653-922476f366cc + - 609712b3-6e86-4b1d-93cf-3e3613b94611 status: 200 OK code: 200 duration: "" @@ -647,10 +748,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -659,7 +760,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:25 GMT + - Wed, 18 Oct 2023 16:36:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -669,7 +770,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b50a0396-7537-480d-921c-276d14d8e439 + - ed912eed-8a8a-48e0-ba5b-cfdbf5cab0b5 status: 200 OK code: 200 duration: "" @@ -680,10 +781,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -692,7 +793,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:30 GMT + - Wed, 18 Oct 2023 16:36:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +803,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc6985a9-0a4e-42bf-9147-45e9b5c9705b + - d79e1350-dc2a-4de7-8d39-0c8bf56407c3 status: 200 OK code: 200 duration: "" @@ -713,10 +814,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -725,7 +826,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:35 GMT + - Wed, 18 Oct 2023 16:37:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +836,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3c8aa25-a634-4fc6-9030-4b846bee1676 + - 973a8ffe-0b9d-4480-ab38-fa4e44689c29 status: 200 OK code: 200 duration: "" @@ -746,10 +847,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -758,7 +859,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:40 GMT + - Wed, 18 Oct 2023 16:37:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -768,7 +869,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11e78bfa-18e9-437d-8bb2-334cc475af44 + - 10944ae9-01f2-4061-8c48-546e932b8788 status: 200 OK code: 200 duration: "" @@ -779,10 +880,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -791,7 +892,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:46 GMT + - Wed, 18 Oct 2023 16:37:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -801,7 +902,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8917703b-ca11-4427-964b-767fae5749a7 + - 3ab95638-4882-40d0-b098-e242a9db7097 status: 200 OK code: 200 duration: "" @@ -812,10 +913,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -824,7 +925,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:51 GMT + - Wed, 18 Oct 2023 16:37:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +935,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d251d31-b32a-431b-920e-c7886ffa509c + - b0df6b23-2494-4469-a50c-633923e2c479 status: 200 OK code: 200 duration: "" @@ -845,10 +946,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -857,7 +958,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:56 GMT + - Wed, 18 Oct 2023 16:37:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,7 +968,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac5761ba-74ee-4d0c-b888-4cc623b9bc18 + - b7f5b660-1552-4f15-9332-255fdb9c92fa status: 200 OK code: 200 duration: "" @@ -878,10 +979,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -890,7 +991,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:01 GMT + - Wed, 18 Oct 2023 16:37:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -900,7 +1001,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f9406f8-c90d-44e3-809f-cadac9169260 + - 7ef31ce5-16a1-4241-86f1-87f350f354f0 status: 200 OK code: 200 duration: "" @@ -911,10 +1012,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -923,7 +1024,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:06 GMT + - Wed, 18 Oct 2023 16:37:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +1034,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d6257c1-b14f-4a4c-b77f-098b322a0c72 + - be29497d-ddf0-49ca-ba95-d486c63e8d26 status: 200 OK code: 200 duration: "" @@ -944,10 +1045,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -956,7 +1057,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:11 GMT + - Wed, 18 Oct 2023 16:37:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +1067,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25b49319-507d-49c4-a9a7-62d6cebc743d + - e2a012c2-8598-4f5d-ab93-0e2c4a817d67 status: 200 OK code: 200 duration: "" @@ -977,10 +1078,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -989,7 +1090,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:16 GMT + - Wed, 18 Oct 2023 16:37:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -999,7 +1100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eaa0881-95f9-4e51-839e-0593bb6f1044 + - 5f949b5f-fc23-4955-8b53-e734a667dcb2 status: 200 OK code: 200 duration: "" @@ -1010,10 +1111,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1022,7 +1123,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:21 GMT + - Wed, 18 Oct 2023 16:37:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +1133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95336c0f-8f9d-41da-80d1-52dba909712d + - fefb4c5d-f9bb-4a0d-8747-c376e260b7ae status: 200 OK code: 200 duration: "" @@ -1043,10 +1144,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1055,7 +1156,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:26 GMT + - Wed, 18 Oct 2023 16:37:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1065,7 +1166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9080aa7-83d3-442a-bc5b-224e9a3322f7 + - a910596d-98fe-407d-a873-6331c93ded22 status: 200 OK code: 200 duration: "" @@ -1076,10 +1177,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1088,7 +1189,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:31 GMT + - Wed, 18 Oct 2023 16:37:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1098,7 +1199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2c6457d-7b53-4f35-9bcc-b5df94655a17 + - 189d1236-b54b-463b-9799-90471df8d8c7 status: 200 OK code: 200 duration: "" @@ -1109,10 +1210,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1121,7 +1222,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:36 GMT + - Wed, 18 Oct 2023 16:38:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1131,7 +1232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 115cc97c-aee8-4520-921f-f332decb875d + - 03e80b28-d66d-4c3b-820f-f0bddfd489bf status: 200 OK code: 200 duration: "" @@ -1142,10 +1243,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1154,7 +1255,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:41 GMT + - Wed, 18 Oct 2023 16:38:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1164,7 +1265,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ab8d403-3ca1-4a18-a78b-8addfe26ff74 + - d4ab6fc1-9d67-4573-966d-927eaace70c1 status: 200 OK code: 200 duration: "" @@ -1175,10 +1276,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1187,7 +1288,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:46 GMT + - Wed, 18 Oct 2023 16:38:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1197,7 +1298,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecdf7ccd-8dc0-4db9-9357-bd72bb131c8d + - 477e8a51-57d2-4709-b5a8-43675b36e31a status: 200 OK code: 200 duration: "" @@ -1208,10 +1309,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1220,7 +1321,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:51 GMT + - Wed, 18 Oct 2023 16:38:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1230,7 +1331,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cc1e1d8-35dd-436a-99dc-bec0d0528f91 + - 1ef5b258-1d75-460d-bde4-8a9f74a6fcb5 status: 200 OK code: 200 duration: "" @@ -1241,10 +1342,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1253,7 +1354,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:56 GMT + - Wed, 18 Oct 2023 16:38:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1263,7 +1364,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5ece8b7-38d8-4632-bb68-c56cd47d3ca4 + - 8486adfc-415d-42aa-bbee-e925bdfe52a9 status: 200 OK code: 200 duration: "" @@ -1274,10 +1375,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1286,7 +1387,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:01 GMT + - Wed, 18 Oct 2023 16:38:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1296,7 +1397,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bf1c0ea-2d86-4487-872c-875c84ac2193 + - a8e42956-b570-4f62-8014-d82567ce71ec status: 200 OK code: 200 duration: "" @@ -1307,10 +1408,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1319,7 +1420,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:07 GMT + - Wed, 18 Oct 2023 16:38:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1329,7 +1430,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 132e1b13-5653-4356-bf97-5f0f8563614b + - 4d5ecfc4-b71e-4cb5-bea8-2c953f6de7c6 status: 200 OK code: 200 duration: "" @@ -1340,10 +1441,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1352,7 +1453,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:12 GMT + - Wed, 18 Oct 2023 16:38:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1362,7 +1463,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93b642d7-dac4-4b44-a339-37ed8787209a + - f89ff293-4c84-49aa-a372-8fef24fdf50f status: 200 OK code: 200 duration: "" @@ -1373,10 +1474,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1385,7 +1486,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:17 GMT + - Wed, 18 Oct 2023 16:38:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1395,7 +1496,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 407f2de5-f3a0-4195-95df-9b9b9f57c19d + - ea8ef313-6f1d-43ae-bcbd-675963825c71 status: 200 OK code: 200 duration: "" @@ -1406,10 +1507,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1418,7 +1519,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:22 GMT + - Wed, 18 Oct 2023 16:38:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1428,7 +1529,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6043c960-9159-4d31-a095-50284124cb92 + - f4d66ea7-0c44-4818-879e-3446b53de10a status: 200 OK code: 200 duration: "" @@ -1439,10 +1540,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1451,7 +1552,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:27 GMT + - Wed, 18 Oct 2023 16:38:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1461,7 +1562,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a72ae8c9-4591-4f36-a9fa-79ee19977105 + - f58fada2-60c8-4747-9a96-1242bb44f2cb status: 200 OK code: 200 duration: "" @@ -1472,10 +1573,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1484,7 +1585,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:33 GMT + - Wed, 18 Oct 2023 16:38:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1494,7 +1595,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b3aa3bd-4362-4eac-8dba-98725f4bfb3c + - 9434bd04-0a51-493b-bf72-5b4580d2c468 status: 200 OK code: 200 duration: "" @@ -1505,10 +1606,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1517,7 +1618,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:38 GMT + - Wed, 18 Oct 2023 16:39:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1527,7 +1628,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17d1ee4b-2714-4c15-ba34-9094848efd79 + - d39bb62d-89e6-49ee-8532-be7c625df87b status: 200 OK code: 200 duration: "" @@ -1538,10 +1639,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1550,7 +1651,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:43 GMT + - Wed, 18 Oct 2023 16:39:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1560,7 +1661,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8606cd07-def7-4de5-9e0a-1658b49e0921 + - 936e9b09-9008-4caf-bc8f-dd86b8705ff6 status: 200 OK code: 200 duration: "" @@ -1571,10 +1672,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1583,7 +1684,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:48 GMT + - Wed, 18 Oct 2023 16:39:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1593,7 +1694,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d52a72a-ea49-4ab2-bfe9-459d858e41db + - 6ae6b46c-a734-4f8f-8121-29eb1d06d519 status: 200 OK code: 200 duration: "" @@ -1604,10 +1705,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1616,7 +1717,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:53 GMT + - Wed, 18 Oct 2023 16:39:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1626,7 +1727,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25d40a38-f751-480d-9c2c-768f41a048b1 + - 1cac3b66-f892-44eb-8737-33403c8e8b3e status: 200 OK code: 200 duration: "" @@ -1637,10 +1738,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1649,7 +1750,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:58 GMT + - Wed, 18 Oct 2023 16:39:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1659,7 +1760,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75bf23ed-c077-4912-9016-bc5645be4f5f + - 735e7777-8802-4037-9a8c-ebf6baeb4aaa status: 200 OK code: 200 duration: "" @@ -1670,10 +1771,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1682,7 +1783,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:03 GMT + - Wed, 18 Oct 2023 16:39:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1692,7 +1793,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38a84966-3c56-4f31-8bd2-b22c79494051 + - 9a3fdcfe-dd1d-4969-8100-aa210fe198e1 status: 200 OK code: 200 duration: "" @@ -1703,10 +1804,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1715,7 +1816,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:08 GMT + - Wed, 18 Oct 2023 16:39:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1725,7 +1826,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17f9d3f5-3edc-4dc8-9316-b5ae43eb5f12 + - ccab8ae6-5889-4863-bfca-0dd25d43c693 status: 200 OK code: 200 duration: "" @@ -1736,10 +1837,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1748,7 +1849,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:13 GMT + - Wed, 18 Oct 2023 16:39:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1758,7 +1859,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34d8bef2-1134-425c-87b5-2398d80d94e2 + - 348c6863-8d47-4236-8377-6e7ddc184e71 status: 200 OK code: 200 duration: "" @@ -1769,10 +1870,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1781,7 +1882,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:18 GMT + - Wed, 18 Oct 2023 16:39:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1791,7 +1892,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 359eae50-3159-4dea-9b9b-68ae5c923e50 + - bf4e7ede-4221-4517-813c-c38c233bd717 status: 200 OK code: 200 duration: "" @@ -1802,10 +1903,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1814,7 +1915,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:23 GMT + - Wed, 18 Oct 2023 16:39:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1824,7 +1925,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c906fd1d-de8f-491b-845c-707a70ff305e + - adfc31f4-8071-4ba6-b7a0-0d6b29bda1c8 status: 200 OK code: 200 duration: "" @@ -1835,10 +1936,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1847,7 +1948,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:28 GMT + - Wed, 18 Oct 2023 16:39:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1857,7 +1958,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 353f3d57-dabf-441c-91e5-f1168b5dddd2 + - 16a21bdf-204f-441c-a02d-c01658eb003d status: 200 OK code: 200 duration: "" @@ -1868,10 +1969,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1880,7 +1981,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:33 GMT + - Wed, 18 Oct 2023 16:39:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1890,7 +1991,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b9e1fe8-bd03-4e63-9782-68b1d7482872 + - d7f5dd2c-dc2f-4487-b254-50dbdd66ca03 status: 200 OK code: 200 duration: "" @@ -1901,10 +2002,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1913,7 +2014,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:39 GMT + - Wed, 18 Oct 2023 16:40:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1923,7 +2024,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e73d02c-acb4-4db0-99d9-8a076240e4a8 + - 5bab43ed-d041-497c-921c-d1c45c4933e7 status: 200 OK code: 200 duration: "" @@ -1934,10 +2035,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1946,7 +2047,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:44 GMT + - Wed, 18 Oct 2023 16:40:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1956,7 +2057,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 328cd0fc-6732-49f6-8699-fbf452df66a4 + - b0897ee8-4115-4c71-9fb3-58a30ea86f66 status: 200 OK code: 200 duration: "" @@ -1967,10 +2068,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -1979,7 +2080,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:49 GMT + - Wed, 18 Oct 2023 16:40:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1989,7 +2090,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb7d87ac-b86c-4a2b-a1fe-5a8b8589b2a7 + - bc989711-da43-4d56-a9e7-5e04d4b711e9 status: 200 OK code: 200 duration: "" @@ -2000,10 +2101,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2012,7 +2113,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:54 GMT + - Wed, 18 Oct 2023 16:40:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2022,7 +2123,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b632e18f-8e3f-4960-9e95-d9df416881d6 + - b19dbbbd-f547-48f0-833c-4eb9d4ae78a6 status: 200 OK code: 200 duration: "" @@ -2033,10 +2134,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2045,7 +2146,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:59 GMT + - Wed, 18 Oct 2023 16:40:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2055,7 +2156,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b92ccbd-fe02-41f1-8ac4-100b35af9cd9 + - 23b120c8-953a-40a6-ac01-941acaa3e4fc status: 200 OK code: 200 duration: "" @@ -2066,10 +2167,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2078,7 +2179,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:04 GMT + - Wed, 18 Oct 2023 16:40:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2088,7 +2189,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fa17b18-ba05-4682-9322-0e682f8e2da1 + - 3bcf1f6b-1c1e-4196-ac84-8b7d44bf5b92 status: 200 OK code: 200 duration: "" @@ -2099,10 +2200,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2111,7 +2212,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:09 GMT + - Wed, 18 Oct 2023 16:40:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2121,7 +2222,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42f724ce-ba43-4c5c-945b-a8a80e8d5d84 + - be9922fc-0e32-44f9-ac29-2f4d41566321 status: 200 OK code: 200 duration: "" @@ -2132,10 +2233,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2144,7 +2245,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:14 GMT + - Wed, 18 Oct 2023 16:40:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2154,7 +2255,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86292b78-4780-4569-8462-8c15b027ecb5 + - 1017262c-9bcd-48cd-bee7-7f57621c83a2 status: 200 OK code: 200 duration: "" @@ -2165,10 +2266,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2177,7 +2278,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:19 GMT + - Wed, 18 Oct 2023 16:40:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2187,7 +2288,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77160c5f-a9ef-4010-bd2c-c0bfdf344d7c + - 47112030-ec74-4b65-a6fa-4c25af4566af status: 200 OK code: 200 duration: "" @@ -2198,10 +2299,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2210,7 +2311,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:24 GMT + - Wed, 18 Oct 2023 16:40:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2220,7 +2321,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53323ec0-6c10-4d10-8b64-0ad156e7dde4 + - fe37f8e8-a6a0-4acd-8d57-fb78590930c7 status: 200 OK code: 200 duration: "" @@ -2231,10 +2332,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2243,7 +2344,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:29 GMT + - Wed, 18 Oct 2023 16:40:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2253,7 +2354,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6221dd5-9794-4890-aee7-548cad865342 + - ec1579e4-b732-4b81-bd2d-9a72738175bb status: 200 OK code: 200 duration: "" @@ -2264,10 +2365,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2276,7 +2377,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:34 GMT + - Wed, 18 Oct 2023 16:40:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2286,7 +2387,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a32a9f3c-6464-4bb2-8f46-81f6e3987066 + - af8213fe-d63e-4792-b345-b34cdc279e45 status: 200 OK code: 200 duration: "" @@ -2297,10 +2398,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.325862Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "615" @@ -2309,7 +2410,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:39 GMT + - Wed, 18 Oct 2023 16:41:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2319,7 +2420,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eea14636-a3b6-44e1-9b13-c443da69f8cd + - 84a4a98e-80ea-4d1f-857b-f1e1f69629b6 status: 200 OK code: 200 duration: "" @@ -2330,19 +2431,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:05:45.136525Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "613" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:41:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2352,7 +2453,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91a52687-1f87-4fc5-adc4-b09d2a4f3836 + - f86a9c9a-a442-4e5f-b928-22d5b940f420 status: 200 OK code: 200 duration: "" @@ -2363,19 +2464,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:02:25.970405Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1405" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:41:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2385,7 +2486,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12657784-0172-4f0f-a606-ffe5b95d9883 + - e7c8ee61-b25a-4d9e-a6b0-1977395e9151 status: 200 OK code: 200 duration: "" @@ -2396,19 +2497,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:05:45.136525Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "613" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:41:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2418,7 +2519,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eae6681a-8ffb-4280-84f8-b4d81284535f + - e2fc7137-197b-434c-af41-8cd5754b5fb5 status: 200 OK code: 200 duration: "" @@ -2429,19 +2530,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b/nodes?order_by=created_at_asc&page=1&pool_id=88e30ca7-97f1-4ad9-a64c-0382b66a7acd&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"nodes":[{"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:56.404418Z","error_message":null,"id":"03ee9fff-1442-46e1-8574-8dbb5a12e5f4","name":"scw-cluster-pool-03ee9fff144246e185748dbb5a12e","pool_id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","provider_id":"scaleway://instance/fr-par-1/6bc5a5bd-2dd9-4298-960f-e7ef6f190421","public_ip_v4":"51.158.123.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:45.122671Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:41:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2451,7 +2552,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a216a25-bae5-4e9d-93f5-3336b31b58a4 + - 2008c32c-3cc6-4748-a2d7-4faa0de04b31 status: 200 OK code: 200 duration: "" @@ -2462,19 +2563,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:02:25.970405Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1405" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:41:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2484,7 +2585,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 024c99b3-4ed7-4963-b740-d40c44cb13d6 + - f7633540-3702-45db-9dc2-cb0b2eba0999 status: 200 OK code: 200 duration: "" @@ -2495,19 +2596,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2FrVjNUVVJCZVU5R2IxaEVWRTE2VFZSQmVFNXFSWGROUkVGNVQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFhGUUNsZ3lXRFZ2ZUhncmRFY3lVVkV6WVRGTWJUSTRLMlJYVG10VEwxbDBRWFp5YVdVeVlXaFVhR2xSVVdscGNVazJibnBTTWpsNWRWZHJkV1ZYY21rMVlqY0tNV3hGZUdGSFlVOVFSWHBrUTBaRU1GWnNVbkF6ZW5NcmVqaElNME0zWjBaVWJUQlhSMWxhVVd0eFExZHFNM0EwZHpobVpGQmpWakJZT1ZsUGJVRlFUZ3B3SzBOMlowUnZiWFZKVGxKUFMxVmtWR3RSZVd4TU5YZDJRM2RFZW5Cd1RVOWlURlJvVDA1a1RHRmFkMVlyVFRadU1GQktiMUp2YjFSQlNUQkxZMGhyQ2psclJucE5ObEJLYlhRMlNEQXJZbEZaYVhONGVHcEZibVJNV2pGUVoyWXhUbkYzWVVoNk0wRm9TakpJUjBKTFVUVktTSGQzZWl0blRuVmxTRW95VERJS1JEZFBLMjQxVEZsd2EwWlVkV3hTWVdKRWEwUTBUMWhJYVRsQmMyVkhTa05OSzFoU1FsUjNhelJDV0RGMmNWcDVlbkJUYkVKSmJsVklPV2QxWVdwVWRBbzNWbVJtV2todU1UTkVTMmxFYTFac2QwaGpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktlVmh3V0hwR2NXZzNlSFZsZDBkcmMwcEdSWFF4ZEhwalRXbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNTV2xXYjA1TEwyMVpXVWx2UXpkaGFVUXpZM2gzUzFCSFdHY3hjV2t4UVZjMWFqQkxZMmxZVG5sSFpUWTJkRGg1VVFweFdGVTFkbkJRVFVwNVVHSjNaMkp3VVRSRlJtUlpaV281VjFnemFYbFpOalZyYjFnMFpXaDNRMmN6YW5oRWFWWm9OWFptZW5RemJYQmpjamxaVVVJMENsaFZUa2hPVlVORlNIUklORGswVGt0QmVrZzJZbVo0TWlzNVNsSkRWbFJXSzFCVWNHZFBOMFV4U1VwNmExaGlWM05yT0hWbWFscFBPVFF4YUZrcmMyMEtiMjFOYnpSeFpuaDJSV1U0YjJweVpXUlZVRzVCT0RkaWNWZEljbk50VTJNeGFVOTNOSEIwYTB0SFJYWjFWalZGVkdKSFJYVjZiV3B2TW5GSVpsbDNhUXBOY1ZGWk5HWnlOaTlOZFdkeWJFdEpXa1psUVZwV1lUTnZURE4xZGk5b2NtWk5TVk5YTmxWeVdIRmpOSGhFZFV0SWVrbFhjMFp4VldWU1oxWlhUbGRCQ2t4VE9XOXNVbmhpY1dsRGVTdFNVa2RTV1ZOalkyVm1ZMUo0T1hCa2ExVnhWMGxMU0FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzViOWI1YTg1LWJiZmMtNDRjNC04OGVjLWY1NDExZDM5NmMxYi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbHVzdGVyIgogICAgdXNlcjogY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAwcUQ5Y1BRd2o0RHdpbGxjUG5rVUk4Y3QzMjZ6cVhoY0hMN3ppMGszM3pRbkZLeHNmZHp5SUh1Qg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2550" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:46 GMT + - Wed, 18 Oct 2023 16:41:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2517,7 +2618,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4767f23-c4f1-4169-8d3c-3b4650f88111 + - 43d151c2-ed8f-4dbb-b4b9-28a7c94da452 status: 200 OK code: 200 duration: "" @@ -2528,19 +2629,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:05:45.136525Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "613" + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:41:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 890dc258-d3fc-4e1c-8e42-fcc5456b01f2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:46 GMT + - Wed, 18 Oct 2023 16:41:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2550,7 +2684,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc53ad67-7b4f-40a0-aa53-29df10324197 + - ed795849-7901-43df-8c7a-06874fbf4c6d status: 200 OK code: 200 duration: "" @@ -2561,19 +2695,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b/nodes?order_by=created_at_asc&page=1&pool_id=88e30ca7-97f1-4ad9-a64c-0382b66a7acd&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"nodes":[{"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:56.404418Z","error_message":null,"id":"03ee9fff-1442-46e1-8574-8dbb5a12e5f4","name":"scw-cluster-pool-03ee9fff144246e185748dbb5a12e","pool_id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","provider_id":"scaleway://instance/fr-par-1/6bc5a5bd-2dd9-4298-960f-e7ef6f190421","public_ip_v4":"51.158.123.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:45.122671Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:46 GMT + - Wed, 18 Oct 2023 16:41:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2583,7 +2717,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e9f834d-32f0-433f-b14f-9d640c18df04 + - 31b37f1b-f946-412d-bd72-acfb94af2349 status: 200 OK code: 200 duration: "" @@ -2594,19 +2728,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:02:25.970405Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1405" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:46 GMT + - Wed, 18 Oct 2023 16:41:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2616,7 +2750,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c6e4729-7ff7-4c86-a765-5f0bb3d14232 + - 508a6642-99b5-4089-9a89-e582439b7c61 status: 200 OK code: 200 duration: "" @@ -2627,19 +2761,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2FrVjNUVVJCZVU5R2IxaEVWRTE2VFZSQmVFNXFSWGROUkVGNVQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFhGUUNsZ3lXRFZ2ZUhncmRFY3lVVkV6WVRGTWJUSTRLMlJYVG10VEwxbDBRWFp5YVdVeVlXaFVhR2xSVVdscGNVazJibnBTTWpsNWRWZHJkV1ZYY21rMVlqY0tNV3hGZUdGSFlVOVFSWHBrUTBaRU1GWnNVbkF6ZW5NcmVqaElNME0zWjBaVWJUQlhSMWxhVVd0eFExZHFNM0EwZHpobVpGQmpWakJZT1ZsUGJVRlFUZ3B3SzBOMlowUnZiWFZKVGxKUFMxVmtWR3RSZVd4TU5YZDJRM2RFZW5Cd1RVOWlURlJvVDA1a1RHRmFkMVlyVFRadU1GQktiMUp2YjFSQlNUQkxZMGhyQ2psclJucE5ObEJLYlhRMlNEQXJZbEZaYVhONGVHcEZibVJNV2pGUVoyWXhUbkYzWVVoNk0wRm9TakpJUjBKTFVUVktTSGQzZWl0blRuVmxTRW95VERJS1JEZFBLMjQxVEZsd2EwWlVkV3hTWVdKRWEwUTBUMWhJYVRsQmMyVkhTa05OSzFoU1FsUjNhelJDV0RGMmNWcDVlbkJUYkVKSmJsVklPV2QxWVdwVWRBbzNWbVJtV2todU1UTkVTMmxFYTFac2QwaGpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktlVmh3V0hwR2NXZzNlSFZsZDBkcmMwcEdSWFF4ZEhwalRXbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNTV2xXYjA1TEwyMVpXVWx2UXpkaGFVUXpZM2gzUzFCSFdHY3hjV2t4UVZjMWFqQkxZMmxZVG5sSFpUWTJkRGg1VVFweFdGVTFkbkJRVFVwNVVHSjNaMkp3VVRSRlJtUlpaV281VjFnemFYbFpOalZyYjFnMFpXaDNRMmN6YW5oRWFWWm9OWFptZW5RemJYQmpjamxaVVVJMENsaFZUa2hPVlVORlNIUklORGswVGt0QmVrZzJZbVo0TWlzNVNsSkRWbFJXSzFCVWNHZFBOMFV4U1VwNmExaGlWM05yT0hWbWFscFBPVFF4YUZrcmMyMEtiMjFOYnpSeFpuaDJSV1U0YjJweVpXUlZVRzVCT0RkaWNWZEljbk50VTJNeGFVOTNOSEIwYTB0SFJYWjFWalZGVkdKSFJYVjZiV3B2TW5GSVpsbDNhUXBOY1ZGWk5HWnlOaTlOZFdkeWJFdEpXa1psUVZwV1lUTnZURE4xZGk5b2NtWk5TVk5YTmxWeVdIRmpOSGhFZFV0SWVrbFhjMFp4VldWU1oxWlhUbGRCQ2t4VE9XOXNVbmhpY1dsRGVTdFNVa2RTV1ZOalkyVm1ZMUo0T1hCa2ExVnhWMGxMU0FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzViOWI1YTg1LWJiZmMtNDRjNC04OGVjLWY1NDExZDM5NmMxYi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbHVzdGVyIgogICAgdXNlcjogY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAwcUQ5Y1BRd2o0RHdpbGxjUG5rVUk4Y3QzMjZ6cVhoY0hMN3ppMGszM3pRbkZLeHNmZHp5SUh1Qg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2550" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:46 GMT + - Wed, 18 Oct 2023 16:41:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2649,7 +2783,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08f9970a-d5ff-47ce-9982-2b0559afd9fa + - a2b1d16f-45c6-48bc-a6ee-03ba29769df4 status: 200 OK code: 200 duration: "" @@ -2660,19 +2794,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:05:45.136525Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "613" + - "615" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:05 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56c1b54a-5cd7-4382-beae-a0a0379a7e93 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:46 GMT + - Wed, 18 Oct 2023 16:42:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2682,7 +2849,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4643b58f-4146-48a0-966c-b55c6ab033c7 + - 51b897da-5474-4059-9856-fb45b5f88c76 status: 200 OK code: 200 duration: "" @@ -2693,19 +2860,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b/nodes?order_by=created_at_asc&page=1&pool_id=88e30ca7-97f1-4ad9-a64c-0382b66a7acd&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"nodes":[{"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:56.404418Z","error_message":null,"id":"03ee9fff-1442-46e1-8574-8dbb5a12e5f4","name":"scw-cluster-pool-03ee9fff144246e185748dbb5a12e","pool_id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","provider_id":"scaleway://instance/fr-par-1/6bc5a5bd-2dd9-4298-960f-e7ef6f190421","public_ip_v4":"51.158.123.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:45.122671Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:47 GMT + - Wed, 18 Oct 2023 16:42:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2715,7 +2882,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d49f02f-d4dd-477a-af5a-8b9d35860f6a + - 258edfc2-7b08-4abd-9445-e023e426394b status: 200 OK code: 200 duration: "" @@ -2726,19 +2893,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:02:25.970405Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1405" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:48 GMT + - Wed, 18 Oct 2023 16:42:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2748,7 +2915,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0b591f7-3685-494d-a872-8141c4b622e0 + - bc0ad493-9073-46a8-9c36-cd50fd8818b0 status: 200 OK code: 200 duration: "" @@ -2759,19 +2926,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogImNsdXN0ZXIiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2FrVjNUVVJCZVU5R2IxaEVWRTE2VFZSQmVFNXFSWGROUkVGNVQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFhGUUNsZ3lXRFZ2ZUhncmRFY3lVVkV6WVRGTWJUSTRLMlJYVG10VEwxbDBRWFp5YVdVeVlXaFVhR2xSVVdscGNVazJibnBTTWpsNWRWZHJkV1ZYY21rMVlqY0tNV3hGZUdGSFlVOVFSWHBrUTBaRU1GWnNVbkF6ZW5NcmVqaElNME0zWjBaVWJUQlhSMWxhVVd0eFExZHFNM0EwZHpobVpGQmpWakJZT1ZsUGJVRlFUZ3B3SzBOMlowUnZiWFZKVGxKUFMxVmtWR3RSZVd4TU5YZDJRM2RFZW5Cd1RVOWlURlJvVDA1a1RHRmFkMVlyVFRadU1GQktiMUp2YjFSQlNUQkxZMGhyQ2psclJucE5ObEJLYlhRMlNEQXJZbEZaYVhONGVHcEZibVJNV2pGUVoyWXhUbkYzWVVoNk0wRm9TakpJUjBKTFVUVktTSGQzZWl0blRuVmxTRW95VERJS1JEZFBLMjQxVEZsd2EwWlVkV3hTWVdKRWEwUTBUMWhJYVRsQmMyVkhTa05OSzFoU1FsUjNhelJDV0RGMmNWcDVlbkJUYkVKSmJsVklPV2QxWVdwVWRBbzNWbVJtV2todU1UTkVTMmxFYTFac2QwaGpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktlVmh3V0hwR2NXZzNlSFZsZDBkcmMwcEdSWFF4ZEhwalRXbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNTV2xXYjA1TEwyMVpXVWx2UXpkaGFVUXpZM2gzUzFCSFdHY3hjV2t4UVZjMWFqQkxZMmxZVG5sSFpUWTJkRGg1VVFweFdGVTFkbkJRVFVwNVVHSjNaMkp3VVRSRlJtUlpaV281VjFnemFYbFpOalZyYjFnMFpXaDNRMmN6YW5oRWFWWm9OWFptZW5RemJYQmpjamxaVVVJMENsaFZUa2hPVlVORlNIUklORGswVGt0QmVrZzJZbVo0TWlzNVNsSkRWbFJXSzFCVWNHZFBOMFV4U1VwNmExaGlWM05yT0hWbWFscFBPVFF4YUZrcmMyMEtiMjFOYnpSeFpuaDJSV1U0YjJweVpXUlZVRzVCT0RkaWNWZEljbk50VTJNeGFVOTNOSEIwYTB0SFJYWjFWalZGVkdKSFJYVjZiV3B2TW5GSVpsbDNhUXBOY1ZGWk5HWnlOaTlOZFdkeWJFdEpXa1psUVZwV1lUTnZURE4xZGk5b2NtWk5TVk5YTmxWeVdIRmpOSGhFZFV0SWVrbFhjMFp4VldWU1oxWlhUbGRCQ2t4VE9XOXNVbmhpY1dsRGVTdFNVa2RTV1ZOalkyVm1ZMUo0T1hCa2ExVnhWMGxMU0FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzViOWI1YTg1LWJiZmMtNDRjNC04OGVjLWY1NDExZDM5NmMxYi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBjbHVzdGVyCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJjbHVzdGVyIgogICAgdXNlcjogY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGNsdXN0ZXIKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiAwcUQ5Y1BRd2o0RHdpbGxjUG5rVUk4Y3QzMjZ6cVhoY0hMN3ppMGszM3pRbkZLeHNmZHp5SUh1Qg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-18T16:35:58.226289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2550" + - "615" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:48 GMT + - Wed, 18 Oct 2023 16:42:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2781,7 +2948,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ddba8c8-dde0-4619-afe3-93a54771052b + - 0231c3c8-ceb1-4ddf-b176-29076fb07073 status: 200 OK code: 200 duration: "" @@ -2792,10 +2959,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:05:45.136525Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T16:42:25.423707Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - "613" @@ -2804,7 +2971,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:48 GMT + - Wed, 18 Oct 2023 16:42:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2814,7 +2981,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 421ec57e-5cc1-4919-9b13-c9c960a8482d + - 55380260-db41-4a08-9caf-9f053868412a status: 200 OK code: 200 duration: "" @@ -2825,19 +2992,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b/nodes?order_by=created_at_asc&page=1&pool_id=88e30ca7-97f1-4ad9-a64c-0382b66a7acd&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 method: GET response: - body: '{"nodes":[{"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:56.404418Z","error_message":null,"id":"03ee9fff-1442-46e1-8574-8dbb5a12e5f4","name":"scw-cluster-pool-03ee9fff144246e185748dbb5a12e","pool_id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","provider_id":"scaleway://instance/fr-par-1/6bc5a5bd-2dd9-4298-960f-e7ef6f190421","public_ip_v4":"51.158.123.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:45.122671Z"}],"total_count":1}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:37:25.299493Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "622" + - "1446" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:48 GMT + - Wed, 18 Oct 2023 16:42:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2847,7 +3014,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09674e00-e9c9-415d-9963-a9c5ea664dd6 + - 300836c9-63f3-4d94-8f54-5ee7c157d3ed status: 200 OK code: 200 duration: "" @@ -2858,19 +3025,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/88e30ca7-97f1-4ad9-a64c-0382b66a7acd - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e + method: GET response: - body: '{"autohealing":true,"autoscaling":false,"cluster_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.316645Z","id":"88e30ca7-97f1-4ad9-a64c-0382b66a7acd","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-17T10:05:49.186254992Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T16:42:25.423707Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "613" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:49 GMT + - Wed, 18 Oct 2023 16:42:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2880,7 +3047,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98a4ee96-3de6-4cb1-86f2-257b47794d47 + - 813ac9c4-7c3c-4973-bf20-ebe5df7e22ba status: 200 OK code: 200 duration: "" @@ -2891,19 +3058,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b?with_additional_resources=true - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780/nodes?order_by=created_at_asc&page=1&pool_id=36d4af35-38dd-43ed-b018-0c2276ba501e&status=unknown + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:05:49.273080175Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"nodes":[{"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:52.206981Z","error_message":null,"id":"db82eee8-2227-4175-96d8-73a9140bb89c","name":"scw-test-pool-size-pool-db82eee82227417596d873","pool_id":"36d4af35-38dd-43ed-b018-0c2276ba501e","provider_id":"scaleway://instance/fr-par-1/bbb9fa61-5605-4403-b8ae-13ea3b0a9433","public_ip_v4":"51.158.121.51","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:42:25.409288Z"}],"total_count":1}' headers: Content-Length: - - "1411" + - "658" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:49 GMT + - Wed, 18 Oct 2023 16:42:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2913,7 +3080,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25ad61de-0964-489b-98f3-bb6140694e90 + - d3a39a8e-be5f-4730-a6c5-ac4afd8dce77 status: 200 OK code: 200 duration: "" @@ -2924,19 +3091,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/da6880df-a94a-4f3e-8277-6150a6853c1c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:05:49.273080Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"created_at":"2023-10-18T16:35:44.548859Z","dhcp_enabled":true,"id":"da6880df-a94a-4f3e-8277-6150a6853c1c","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.548859Z","id":"d60333a2-6c87-424b-a126-dcd786170153","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:35:44.548859Z"},{"created_at":"2023-10-18T16:35:44.548859Z","id":"e4b70249-f22f-4e9f-93b5-be9c9beb9af7","subnet":"fd63:256c:45f7:de01::/64","updated_at":"2023-10-18T16:35:44.548859Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.548859Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1408" + - "715" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:49 GMT + - Wed, 18 Oct 2023 16:42:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2946,7 +3113,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc977ce1-7b63-4f6c-aaea-89c5396b599f + - 26fa94be-7ded-46eb-a25c-0636975e6ea3 status: 200 OK code: 200 duration: "" @@ -2957,19 +3124,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:05:49.273080Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:37:25.299493Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1408" + - "1446" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:54 GMT + - Wed, 18 Oct 2023 16:42:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2979,7 +3146,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccb2eda9-1f88-45d3-8ecb-bb9f2a99e1c9 + - 28680945-fa63-426a-9e64-41856068759c status: 200 OK code: 200 duration: "" @@ -2990,19 +3157,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.771125Z","created_at":"2023-10-17T10:00:26.771125Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.5b9b5a85-bbfc-44c4-88ec-f5411d396c1b.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","ingress":"none","name":"cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-10-17T10:05:49.273080Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VFhwVk1VMVdiMWhFVkUxNlRWUkJlRTU2UlRKTmVsVXhUVlp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlNuTlRDbEJzZDIxeE1FUTVWVzFzTlZwNVVVWnlaRTVZTlZodWIzUkxNMnBEVDJKYVpHRmhlRWgxVWtGbVFXWjFaVTFrYzJkdldrTnVlRFk1VDJJM0wweExhVklLV0RoNWJrSlVObHBEV2xObGJXcG1WMDlwYzFWNU5sSm9iRUZWWnpjMmMxaE9UV05RYldoNU5YbGhPRFl5Y2xoS1pGSllWRGRwVG5wSFNVOTFSVkpvUndwTGNuQnhSbmswVlhoWVpGb3lTSFJuZVVSUFZHWTFZbTFvYm1aMlpVcEJkMVJIWnpkUFQxWjZSMjQ1UVdoRFZHNHlhMUFyTmtsdVUxTXdSbVZwTUN0MENtRm5aRWRWZUhaS2QycE9PV2RGT0M5dFdsTkZkRk5pU1hCWlMwbHJSVGh6WlRaWU9HMHdVRWxOYkRORlMyaGtUSHBuY210RWJsWnlWMEV2WmxkM0x6QUtTa1ZYY1hrNVQydFBWM05ZV0M4eFlXUkdNRTlRYUZkVWJIYzVUbWN3YzJkclVTOU1VVU5MZVRSQ1NqTklXRWMwWldNd1FVaG1OSFZIYzJ0R2VrY3ZhUXBrTkdac2MwdHpSM3B1U1d3dlFYTmxkV3ROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpNVWpsbGNGQTNha0ZuTlVSTFZteHJkSFpJVGxGbVNYcEphMFpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDTkZaQlNWZDNhVlJhZEhGcGFrNTNlSFZoWkZwYVNrVlNNRlU1Wm5adVlreFpTVEZNZFU1NGJURnhUbkJ6WmxGWk9RcHdNblJ3YTJZeGR6bHJOeTlKYXpSS1NsVm5VWFZ2YVZjMGR6QnlkWEJoZVRaekx5dHZjbFpzTlZsdWMwdHVWMHB2U0RabmVrOUNUakZZY1dWaWFFa3pDalV3YTI1SlFsWlVjSGh0WkZkQlZIZFVhVU0yUm1rd05qQXdjVFEyUW0xSmVrc3pMM0EwTjJkQlRWWk9kVU16Ym5SWFNEVnROak5qY0ZGQ1pHZHhWbU1LV2t4d1RYZDFkR3N6VVVaS1JUaGxORVJXZVVsQ2JrRmliRXN6VnpoaGVTOU5kM2R0ZDJsSWRETk5Ta3MwUWpkRWNuRldXRUUwVFRSUVlsRmpOMVJDU2dveWNEaDNhbll3THpobFNqbG5WVTFGUzI4cmVYWnlPVmxKV1U1NlJIbFJRVEpEV1hoMFJWTnpSR0ZTTjJaeWJrcHpZVmM0VmpOTFQxcGpSakpIS3pKQkNqSnBWemt2Y2l0bFRIUjZWVkZtU1hsbGJWWTFWRVJGYjNWbGEyeFNRMFJ3SzBSaVF3b3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9jODJlZDEwNy02YWZiLTRjMzAtYmU1Mi0xMWEzZDczN2U3ODAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBlZ04yR2ZKVjlpTEhNVmIwcERMNkhidFg2aFNBQWJncGpKdEIwVGN6bHprSVRLWEpUV2Y3UVllTA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1408" + - "2606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:59 GMT + - Wed, 18 Oct 2023 16:42:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3012,7 +3179,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a38cb49-d891-4742-be39-a18ebbbea65a + - 5aa51e6a-1b32-4ed2-8b7a-3257c233ca72 status: 200 OK code: 200 duration: "" @@ -3023,19 +3190,712 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","type":"not_found"}' + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T16:42:25.423707Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "128" + - "613" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a7b97027-90fa-4754-9c8b-b6043308586b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780/nodes?order_by=created_at_asc&page=1&pool_id=36d4af35-38dd-43ed-b018-0c2276ba501e&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:52.206981Z","error_message":null,"id":"db82eee8-2227-4175-96d8-73a9140bb89c","name":"scw-test-pool-size-pool-db82eee82227417596d873","pool_id":"36d4af35-38dd-43ed-b018-0c2276ba501e","provider_id":"scaleway://instance/fr-par-1/bbb9fa61-5605-4403-b8ae-13ea3b0a9433","public_ip_v4":"51.158.121.51","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:42:25.409288Z"}],"total_count":1}' + headers: + Content-Length: + - "658" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 30029ccf-ceb4-44e6-ab3c-e9060c6b4a80 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/da6880df-a94a-4f3e-8277-6150a6853c1c + method: GET + response: + body: '{"created_at":"2023-10-18T16:35:44.548859Z","dhcp_enabled":true,"id":"da6880df-a94a-4f3e-8277-6150a6853c1c","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.548859Z","id":"d60333a2-6c87-424b-a126-dcd786170153","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:35:44.548859Z"},{"created_at":"2023-10-18T16:35:44.548859Z","id":"e4b70249-f22f-4e9f-93b5-be9c9beb9af7","subnet":"fd63:256c:45f7:de01::/64","updated_at":"2023-10-18T16:35:44.548859Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.548859Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "715" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7f655957-c72a-4042-b767-ebf4ae708bb5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:37:25.299493Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1446" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 67f92a69-00a1-4c9f-84ea-b64e8430eb6e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VFhwVk1VMVdiMWhFVkUxNlRWUkJlRTU2UlRKTmVsVXhUVlp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlNuTlRDbEJzZDIxeE1FUTVWVzFzTlZwNVVVWnlaRTVZTlZodWIzUkxNMnBEVDJKYVpHRmhlRWgxVWtGbVFXWjFaVTFrYzJkdldrTnVlRFk1VDJJM0wweExhVklLV0RoNWJrSlVObHBEV2xObGJXcG1WMDlwYzFWNU5sSm9iRUZWWnpjMmMxaE9UV05RYldoNU5YbGhPRFl5Y2xoS1pGSllWRGRwVG5wSFNVOTFSVkpvUndwTGNuQnhSbmswVlhoWVpGb3lTSFJuZVVSUFZHWTFZbTFvYm1aMlpVcEJkMVJIWnpkUFQxWjZSMjQ1UVdoRFZHNHlhMUFyTmtsdVUxTXdSbVZwTUN0MENtRm5aRWRWZUhaS2QycE9PV2RGT0M5dFdsTkZkRk5pU1hCWlMwbHJSVGh6WlRaWU9HMHdVRWxOYkRORlMyaGtUSHBuY210RWJsWnlWMEV2WmxkM0x6QUtTa1ZYY1hrNVQydFBWM05ZV0M4eFlXUkdNRTlRYUZkVWJIYzVUbWN3YzJkclVTOU1VVU5MZVRSQ1NqTklXRWMwWldNd1FVaG1OSFZIYzJ0R2VrY3ZhUXBrTkdac2MwdHpSM3B1U1d3dlFYTmxkV3ROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpNVWpsbGNGQTNha0ZuTlVSTFZteHJkSFpJVGxGbVNYcEphMFpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDTkZaQlNWZDNhVlJhZEhGcGFrNTNlSFZoWkZwYVNrVlNNRlU1Wm5adVlreFpTVEZNZFU1NGJURnhUbkJ6WmxGWk9RcHdNblJ3YTJZeGR6bHJOeTlKYXpSS1NsVm5VWFZ2YVZjMGR6QnlkWEJoZVRaekx5dHZjbFpzTlZsdWMwdHVWMHB2U0RabmVrOUNUakZZY1dWaWFFa3pDalV3YTI1SlFsWlVjSGh0WkZkQlZIZFVhVU0yUm1rd05qQXdjVFEyUW0xSmVrc3pMM0EwTjJkQlRWWk9kVU16Ym5SWFNEVnROak5qY0ZGQ1pHZHhWbU1LV2t4d1RYZDFkR3N6VVVaS1JUaGxORVJXZVVsQ2JrRmliRXN6VnpoaGVTOU5kM2R0ZDJsSWRETk5Ta3MwUWpkRWNuRldXRUUwVFRSUVlsRmpOMVJDU2dveWNEaDNhbll3THpobFNqbG5WVTFGUzI4cmVYWnlPVmxKV1U1NlJIbFJRVEpEV1hoMFJWTnpSR0ZTTjJaeWJrcHpZVmM0VmpOTFQxcGpSakpIS3pKQkNqSnBWemt2Y2l0bFRIUjZWVkZtU1hsbGJWWTFWRVJGYjNWbGEyeFNRMFJ3SzBSaVF3b3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9jODJlZDEwNy02YWZiLTRjMzAtYmU1Mi0xMWEzZDczN2U3ODAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBlZ04yR2ZKVjlpTEhNVmIwcERMNkhidFg2aFNBQWJncGpKdEIwVGN6bHprSVRLWEpUV2Y3UVllTA==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2606" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a47697f-b616-45d6-854c-a8e70d13f59a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T16:42:25.423707Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "613" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8df9b2c2-7e4c-487d-81c8-9461d165efb4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780/nodes?order_by=created_at_asc&page=1&pool_id=36d4af35-38dd-43ed-b018-0c2276ba501e&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:52.206981Z","error_message":null,"id":"db82eee8-2227-4175-96d8-73a9140bb89c","name":"scw-test-pool-size-pool-db82eee82227417596d873","pool_id":"36d4af35-38dd-43ed-b018-0c2276ba501e","provider_id":"scaleway://instance/fr-par-1/bbb9fa61-5605-4403-b8ae-13ea3b0a9433","public_ip_v4":"51.158.121.51","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:42:25.409288Z"}],"total_count":1}' + headers: + Content-Length: + - "658" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 25f7db5a-c136-4108-98f5-58b33079f98a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/da6880df-a94a-4f3e-8277-6150a6853c1c + method: GET + response: + body: '{"created_at":"2023-10-18T16:35:44.548859Z","dhcp_enabled":true,"id":"da6880df-a94a-4f3e-8277-6150a6853c1c","name":"test-pool-size","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.548859Z","id":"d60333a2-6c87-424b-a126-dcd786170153","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:35:44.548859Z"},{"created_at":"2023-10-18T16:35:44.548859Z","id":"e4b70249-f22f-4e9f-93b5-be9c9beb9af7","subnet":"fd63:256c:45f7:de01::/64","updated_at":"2023-10-18T16:35:44.548859Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.548859Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "715" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3db28870-2ff8-4589-aed5-e1abb3b64a9f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:37:25.299493Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1446" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8cd17d1-9f28-4d34-8d38-61022045f9fd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1zaXplIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VFhwVk1VMVdiMWhFVkUxNlRWUkJlRTU2UlRKTmVsVXhUVlp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlNuTlRDbEJzZDIxeE1FUTVWVzFzTlZwNVVVWnlaRTVZTlZodWIzUkxNMnBEVDJKYVpHRmhlRWgxVWtGbVFXWjFaVTFrYzJkdldrTnVlRFk1VDJJM0wweExhVklLV0RoNWJrSlVObHBEV2xObGJXcG1WMDlwYzFWNU5sSm9iRUZWWnpjMmMxaE9UV05RYldoNU5YbGhPRFl5Y2xoS1pGSllWRGRwVG5wSFNVOTFSVkpvUndwTGNuQnhSbmswVlhoWVpGb3lTSFJuZVVSUFZHWTFZbTFvYm1aMlpVcEJkMVJIWnpkUFQxWjZSMjQ1UVdoRFZHNHlhMUFyTmtsdVUxTXdSbVZwTUN0MENtRm5aRWRWZUhaS2QycE9PV2RGT0M5dFdsTkZkRk5pU1hCWlMwbHJSVGh6WlRaWU9HMHdVRWxOYkRORlMyaGtUSHBuY210RWJsWnlWMEV2WmxkM0x6QUtTa1ZYY1hrNVQydFBWM05ZV0M4eFlXUkdNRTlRYUZkVWJIYzVUbWN3YzJkclVTOU1VVU5MZVRSQ1NqTklXRWMwWldNd1FVaG1OSFZIYzJ0R2VrY3ZhUXBrTkdac2MwdHpSM3B1U1d3dlFYTmxkV3ROUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpNVWpsbGNGQTNha0ZuTlVSTFZteHJkSFpJVGxGbVNYcEphMFpOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDTkZaQlNWZDNhVlJhZEhGcGFrNTNlSFZoWkZwYVNrVlNNRlU1Wm5adVlreFpTVEZNZFU1NGJURnhUbkJ6WmxGWk9RcHdNblJ3YTJZeGR6bHJOeTlKYXpSS1NsVm5VWFZ2YVZjMGR6QnlkWEJoZVRaekx5dHZjbFpzTlZsdWMwdHVWMHB2U0RabmVrOUNUakZZY1dWaWFFa3pDalV3YTI1SlFsWlVjSGh0WkZkQlZIZFVhVU0yUm1rd05qQXdjVFEyUW0xSmVrc3pMM0EwTjJkQlRWWk9kVU16Ym5SWFNEVnROak5qY0ZGQ1pHZHhWbU1LV2t4d1RYZDFkR3N6VVVaS1JUaGxORVJXZVVsQ2JrRmliRXN6VnpoaGVTOU5kM2R0ZDJsSWRETk5Ta3MwUWpkRWNuRldXRUUwVFRSUVlsRmpOMVJDU2dveWNEaDNhbll3THpobFNqbG5WVTFGUzI4cmVYWnlPVmxKV1U1NlJIbFJRVEpEV1hoMFJWTnpSR0ZTTjJaeWJrcHpZVmM0VmpOTFQxcGpSakpIS3pKQkNqSnBWemt2Y2l0bFRIUjZWVkZtU1hsbGJWWTFWRVJGYjNWbGEyeFNRMFJ3SzBSaVF3b3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9jODJlZDEwNy02YWZiLTRjMzAtYmU1Mi0xMWEzZDczN2U3ODAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXNpemUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC1zaXplIgogICAgdXNlcjogdGVzdC1wb29sLXNpemUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtc2l6ZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC1zaXplLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBlZ04yR2ZKVjlpTEhNVmIwcERMNkhidFg2aFNBQWJncGpKdEIwVGN6bHprSVRLWEpUV2Y3UVllTA==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2606" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35ad99f7-7109-4c27-9421-3803e9888e20 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e + method: GET + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-18T16:42:25.423707Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "613" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4dbfff49-16a1-4f2a-aace-464e6dfaf936 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780/nodes?order_by=created_at_asc&page=1&pool_id=36d4af35-38dd-43ed-b018-0c2276ba501e&status=unknown + method: GET + response: + body: '{"nodes":[{"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:52.206981Z","error_message":null,"id":"db82eee8-2227-4175-96d8-73a9140bb89c","name":"scw-test-pool-size-pool-db82eee82227417596d873","pool_id":"36d4af35-38dd-43ed-b018-0c2276ba501e","provider_id":"scaleway://instance/fr-par-1/bbb9fa61-5605-4403-b8ae-13ea3b0a9433","public_ip_v4":"51.158.121.51","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:42:25.409288Z"}],"total_count":1}' + headers: + Content-Length: + - "658" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5e787489-a102-4637-8d79-20dd673055ac + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/36d4af35-38dd-43ed-b018-0c2276ba501e + method: DELETE + response: + body: '{"autohealing":true,"autoscaling":false,"cluster_id":"c82ed107-6afb-4c30-be52-11a3d737e780","container_runtime":"containerd","created_at":"2023-10-18T16:35:57.887111Z","id":"36d4af35-38dd-43ed-b018-0c2276ba501e","kubelet_args":{},"max_size":1,"min_size":1,"name":"pool","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-18T16:42:33.752144179Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "619" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0e61412e-a9da-4240-b0ce-22760c4d5bfb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780?with_additional_resources=true + method: DELETE + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:42:33.836162062Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1452" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 797ebd9b-e7f9-4993-a2c3-3e88c6ec9882 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:42:33.836162Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1449" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f8927ee-53dc-465f-9fbc-a607e1b7c6a9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:42:33.836162Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1449" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9f9e8be5-e9ef-492c-a520-d66d91467700 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:42:33.836162Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1449" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e0e19c6-1655-4518-b157-efe40a0c97ad + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:42:33.836162Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1449" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec435d38-a1d4-40ea-832b-3760803ef562 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:42:33.836162Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1449" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 309c15e5-027d-4379-8d81-1967071b8b53 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":true,"maintenance_window":{"day":"monday","start_hour":12}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://c82ed107-6afb-4c30-be52-11a3d737e780.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.807900Z","created_at":"2023-10-18T16:35:45.807900Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.c82ed107-6afb-4c30-be52-11a3d737e780.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"c82ed107-6afb-4c30-be52-11a3d737e780","ingress":"none","name":"test-pool-size","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":[],"type":"kapsule","updated_at":"2023-10-18T16:42:33.836162Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1449" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5959e7bd-2046-469a-a13c-16ff3bb1caa1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 + method: GET + response: + body: '{"message":"resource is not found","resource":"cluster","resource_id":"c82ed107-6afb-4c30-be52-11a3d737e780","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:04 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e578bac9-0b60-4003-b173-fe31728a0fe5 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/da6880df-a94a-4f3e-8277-6150a6853c1c + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"da6880df-a94a-4f3e-8277-6150a6853c1c","type":"not_found"}' + headers: + Content-Length: + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:04 GMT + - Wed, 18 Oct 2023 16:43:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3045,7 +3905,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0276491-704c-4c78-9e4a-7acc0afce28f + - e839f0ac-246c-409a-a01e-96ae2245541f status: 404 Not Found code: 404 duration: "" @@ -3056,10 +3916,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/5b9b5a85-bbfc-44c4-88ec-f5411d396c1b + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c82ed107-6afb-4c30-be52-11a3d737e780 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"5b9b5a85-bbfc-44c4-88ec-f5411d396c1b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"c82ed107-6afb-4c30-be52-11a3d737e780","type":"not_found"}' headers: Content-Length: - "128" @@ -3068,7 +3928,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:04 GMT + - Wed, 18 Oct 2023 16:43:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3078,7 +3938,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90bc15a1-0e97-4e58-8787-2cc0e61fa213 + - bc1b64cb-5338-4aea-bc95-ebbcbf45a12b status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-pool-upgrade-policy.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-upgrade-policy.cassette.yaml index 26f36a7f45..035b9688cb 100644 --- a/scaleway/testdata/k8s-cluster-pool-upgrade-policy.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-pool-upgrade-policy.cassette.yaml @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:21 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,80 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74d80b82-0e9e-47b3-ba18-d1404ea2f1e3 + - 03a57cf9-fc16-4c2e-8e76-eba7785a8208 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"K8SPoolConfigUpgradePolicy","description":"","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-pool-upgrade-policy","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-18T16:35:44.465392Z","dhcp_enabled":true,"id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.465392Z","id":"40e8207c-fd50-48b8-a880-6d481e30d7c3","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:35:44.465392Z"},{"created_at":"2023-10-18T16:35:44.465392Z","id":"6846558a-d0de-482f-ae6d-28b2a6233ccd","subnet":"fd63:256c:45f7:1fe4::/64","updated_at":"2023-10-18T16:35:44.465392Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.465392Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "724" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6b500ed0-cf10-436a-858e-70aad9d8f0fa + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/07c1b4c0-aa12-4485-b99a-358f4db4ea36 + method: GET + response: + body: '{"created_at":"2023-10-18T16:35:44.465392Z","dhcp_enabled":true,"id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.465392Z","id":"40e8207c-fd50-48b8-a880-6d481e30d7c3","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:35:44.465392Z"},{"created_at":"2023-10-18T16:35:44.465392Z","id":"6846558a-d0de-482f-ae6d-28b2a6233ccd","subnet":"fd63:256c:45f7:1fe4::/64","updated_at":"2023-10-18T16:35:44.465392Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.465392Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "724" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 12693c1a-f5b7-46b9-ae44-58932b4debff + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-upgrade-policy","description":"","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36"}' form: {} headers: Content-Type: @@ -50,16 +118,348 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201014Z","created_at":"2023-10-17T10:00:26.904201014Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:00:26.916310673Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731241728Z","created_at":"2023-10-18T16:35:45.731241728Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:35:45.741517905Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1523" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e5bdfa98-9041-4a78-8373-9a74bf3952ed + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:35:45.741518Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1514" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d69e0b3c-aa1c-41f5-aaca-64687442f677 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.496738Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1519" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0fa87fb0-a1bc-4127-8b0d-0980703dd651 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.496738Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1519" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 10df94c3-326b-4b03-9c78-ac1f7cedd7b7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRYcFZNRTR4YjFoRVZFMTZUVlJCZUU1NlJUSk5lbFV3VGpGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTbkZYQ2xKeWVrVnFibWR0Ym1kNlRVUTVXRkk0UlV4YWFYcEthRVZRZUZaUWNYaDNLMmhDZUZGSGFYbFpObWxqU3pNeU9IUk5XbVUxZDNJclVXTkxZWE5uYlcwS1JVWnJiVUZGS3pkbWVuRlRXVGxoTkRGVlFUSndWMHBKYUd0dlowaHdZbXhOZW1seVZXaG1ZazVSU2tOaFFrTkNNMDh2Y3paRmFITnhLMXBzVGpoNWNBcDRURWgzT1hWM1YwaHphMXBzT0ZSTWRFaHdiRkZWVTFaSE9EUkViRkpwWkVOU1ptSTFZV3BUYzJjMlZsa3JlVEUzYm1KbFpuQm1LekZ3UkVka01tMTVDbGxvZVZOdU5VNTFOMXB0WW5FMk1FcGFRMmRuV214dlpqaGpWMHBvYlV3MlRtTTJUVXQwY2s1WlNrRnJVbTl5TlUxVEwwTlRRV3hHUTBOblJHSTJObTBLVDJWQlRuVjFNMlYxUVRWNlFUZExZM0ZtYVVsSmFuQkJWSEo1UlZka1ZrUlhWbWc0WVZJdmRVOXRPVmN6WVV4d2NtWmhOakYxVjJGTk1sTmFValZPUkFwdVYyazFZV2N5YjBsM1ZuUkZWek5PTHpZNFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUFREZElNRWd6VWtaNWNHbGpkWGRCTmtwUEx6aFRTMGxCTUVsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1lqTjBVRXBrUlZWR1UyMVlORGhIUm1GbmMxWktlRVpPVkVkTFduTkRlRmw2ZW5SbVMzVXlVRTl2UWxCbGJtSXZUd3BUUkUxRk1qSmhVbkoxZFhCT09UVnBlRzVvYlM5TWJWVjRhbGQwYjNjMFRqY3haRW80U2t0MmJsUjNWVFp3UWpObE5XUlJkVzV6WWswNWJXbERhRzg0Q2tGWVkwaFBValp2VFRCUVZuZEthVGcxUzA5a1RtSmlXak5ZUzJKalVtSjVOVmRvZDFaVVExRXhVbXh0V2pkeWRIQklOMlpIYjNob2JEaHdaSGxOYlM4S1pucGhNVlptVTJSMWJqWnRPWGR6ZWpkYVVEZ3ZlSEZZVW5kcVdISlhPVk5RVUdsd2JuUjVlRXg2VXpGWWRrVmhObGd6YmpsRFRYQnBWbk5oYW5SWWFBb3pkRFp0T1dGMFlVUkRhMEYyTVVrMFpUWTBPVzFTVjJSTFVsRlFTR3BJTW1GelEydHdiemR5WmswM00zRmhabEpxWmxsSWVGY3JUbmN5TDBOU2FrbzBDbUYzYTBaQ2VGTkhWelpsU0ZwNGNYSmxkWFpqT0VGSlVHMUVlSEZZYkVoV1YxbDVSZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vOTM2ZjFmNGEtY2Y1YS00MjFkLWJhZTYtYzIwOWU2OGJkZjVjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBQMDB2bmRXS2lmaE5EVm02Q2wyMVRxSVVLSGtZNFZXVThkVndMeDFLa2NnQUd1MVlvU0xzYjc4Ug==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2686" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bdde1cb7-f230-417d-8ccf-0cb5e777c1c0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.496738Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1519" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72393c62-9aeb-45a5-b867-c63819ca09fc + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"kubelet_args":{},"upgrade_policy":{"max_unavailable":3,"max_surge":2},"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c/pools + method: POST + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360135Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "695" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 721b4f46-7e42-475d-a77b-f497d0006d71 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "692" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7f657d58-33f9-43e2-b435-9b6583c7008d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "692" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:56 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 92bb9fc2-5e4f-4ac1-8d73-f7a8c0b310e3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "692" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6b69808-1bb0-44d7-af50-2bf971fbe3c2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1491" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:26 GMT + - Wed, 18 Oct 2023 16:36:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +469,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6be9b3a-cb5b-48d4-aa80-0f7dc8c6aacf + - ca9c6f43-27d6-4505-b391-0258011ab4b7 status: 200 OK code: 200 duration: "" @@ -80,19 +480,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:00:26.916311Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1482" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:26 GMT + - Wed, 18 Oct 2023 16:36:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,7 +502,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32d87a50-2f1f-481a-a5aa-a9e5672c9df2 + - 366831bf-6365-48b0-bd4f-a39b6ae52539 status: 200 OK code: 200 duration: "" @@ -113,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.657163Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1487" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:36:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -135,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5baf64ce-fab7-4aa5-89db-cc87331faf55 + - 55ca34c9-74cf-4e93-b34d-1ad6bfa28198 status: 200 OK code: 200 duration: "" @@ -146,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.657163Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1487" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:36:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0959f0a-d61c-4982-9b7c-ede4aeaa83ca + - 491e5111-655f-4db9-b70e-f3eb683cfad4 status: 200 OK code: 200 duration: "" @@ -179,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRDdHVDa1JvTmxadk5EVk5USGc1VG5WcVNGaElUa3gzVldocVZuZ3JaMWs1S3pKWk9HZE1PREJXVFhwRlp6QkVZbVp1VFV4bVZ6UjVVa0ZoY1hSMVJsbFRkM2dLYUd4VE5IbDFkU3RPYjA1TWFXZDRNRko0YVZsWU1VSnVOU3ROTm5kTFNHcDJaSGRaTTBWUVlWUm1SVzU1VTJGSVVXeDRWWE5TZGpKUFRXdHROVlZwY0FwSWQwZzRiRVV4VkRkM1psVllOalZCUVV4TlFUUklUVlV3YzIxTVpXa3dNMlpsYjJZd01tTldSMDVrTVZCcFUwZGlTVXh4WjBReU1FczBUMUpsVWxKQ0NqWkNNRGxaZFVwcFQzRTNMMmh2ZDJWeFlqUjNiSHBVU0M5QlZtaE1RMHNyUlhwek9HbE1Ra1pIUzI5V1dUa3pkV0ZRZDBKS1dESlVWR0pJTm0xVVJqZ0tWa0Y2Ykc1bGVqVTViMXBFVUV4ME0yVmxOSFFyVDJWV2FYa3dTbEpJUmsxTU1tZDZUbk5zYkdOVlluSnpWR2Q2Um5nMVNqZFRlWGxxYWpSclRHVk1hZ3AwVDBGbkwzaG9TVXRtTkdJeE4xQkRVME5OUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKUkhsU04wdzVZMHBFU1VFelptSk9URVUwTVdGRVoxWXdWSHBOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZETjIweFkycEdOVnB2UldoRFZURTFjMDFuWVdkM2RtaFdjRWxHVHpOUWVGWmpja3RsZVRGbk9WWnZaRkpzT0UxeVlncHhaazlyVUVwREt5OW9NSEkyYkdsS1NYbHRTRWxwUm05SVUxSnNWeko2UVVoeWFETnlTMnAxVmtKR1JHcFVXVzVPU25oc1dqbFpMemhIVkRabWNuZEZDbTFZVTNwUlZGQk5Wa293U2pJd2F5dEtXbWcxYTFaa1FrOUVhRVEzTmxKWFVVbDJTbE5JV0N0RVVWWmhjVEUyUzBkMmRtNUlkazFPTDNaNWRGaE5lRmdLTVRkRVRXWlRZVTlwVEcxVFJXVTFhM0ZwU21sTVVVUjBPWGxSUWtWMWJHWkpibEpTUkdaM1NYQm9SVGt6Y1VwdllrUlBia052T1ZKclNEWTRaVFZIYXdveWVXWnphbUZGVEZvMlFWYzFWa296WWl0Sk5tVlZhblpMVEM5WmJXOVBXVXczU1ZSemFYbDNjV3AzZUVWTWNXRnBWV0prWVZwTloxQkhlVkpwVWxwd0NqWlRNR3BNT1RGQ1NXaGFXR1ZzV1U4NU1uVkJkakJuUlVkbWNGWXhORXBCZVhReVNBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9kNTcwMGFlMy0yNjhjLTQ4YTctOWMyZi1mNjJjM2U0YWNhYTYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ3VwZ3JhZGVwb2xpY3kKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5IgogICAgdXNlcjogazhzcG9vbGNvbmZpZ3VwZ3JhZGVwb2xpY3ktYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlndXBncmFkZXBvbGljeQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBkanJpQnY4cWVuWnczYnRuYmVDVmJ0UzB0MUJxWGIxbzREdHA5N2Z3YjhMRE0zNjl1WFlwTFJERg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2702" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:36:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfec4361-ea2c-41be-9aec-f7446248028a + - 1a6f4092-26b9-4aa9-bcc2-d5752bf2eee0 status: 200 OK code: 200 duration: "" @@ -212,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.657163Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1487" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:36:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,32 +634,228 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99243988-4e41-4a08-acf5-94e7b1ed741a + - 5d5b853d-61ff-426a-a353-11d712a80ecf status: 200 OK code: 200 duration: "" - request: - body: '{"name":"default","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"kubelet_args":{},"upgrade_policy":{"max_unavailable":3,"max_surge":2},"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "692" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 16:36:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - feb863dd-50df-4de0-9ee1-30aaa1edde0e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6/pools - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "692" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88b198c4-e489-4b6c-a070-38175b189791 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "692" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c4522ec-fd66-4ea8-bde7-302801c1cd95 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "692" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1850973a-4802-4ee7-98b9-b2260566cb2d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "692" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f78dbfbd-b952-42b6-be9c-b3fef8e4b37a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "692" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:37:04 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aeae35e0-4553-4eda-8cfa-a49a1789c0e0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403286647Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "678" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:37:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45d6eda2-a269-4e2e-8940-fc56ea032941 + - 73217161-1981-495c-90b0-438b688cd28f status: 200 OK code: 200 duration: "" @@ -280,19 +876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:37:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 064e6444-2b47-4e18-8119-e53a4ba62a72 + - fe91709c-ea51-4c4b-a30b-463115b50390 status: 200 OK code: 200 duration: "" @@ -313,19 +909,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:37 GMT + - Wed, 18 Oct 2023 16:37:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -335,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad97761f-f8dc-478d-a509-12619a45af3d + - 84abe3b4-5b5e-4483-a03c-3c1b91fea7e3 status: 200 OK code: 200 duration: "" @@ -346,19 +942,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:43 GMT + - Wed, 18 Oct 2023 16:37:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -368,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d100a78c-e7b3-4a7f-acb1-7c89c43217d8 + - d9272e5a-38a7-449e-b766-7fc01dbaa20f status: 200 OK code: 200 duration: "" @@ -379,19 +975,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:48 GMT + - Wed, 18 Oct 2023 16:37:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff1dcbad-baa4-4f58-8431-e90bf10a0f66 + - f535c142-622a-4095-bbdb-70964ef9a430 status: 200 OK code: 200 duration: "" @@ -412,19 +1008,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:53 GMT + - Wed, 18 Oct 2023 16:37:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0dbcd69-9800-4d01-b481-47d60f718323 + - 3cf07ca4-1925-486a-a7fe-7baab9165bb2 status: 200 OK code: 200 duration: "" @@ -445,19 +1041,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:59 GMT + - Wed, 18 Oct 2023 16:37:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb44d18f-59d7-4ca4-be3f-99ef0d45a46a + - 02b5551b-9af5-4493-91bd-74add1582c9a status: 200 OK code: 200 duration: "" @@ -478,19 +1074,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:04 GMT + - Wed, 18 Oct 2023 16:37:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +1096,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c6997ce-2cdc-4ccc-b8dd-203bd22ea7a9 + - 3f169bb7-812b-4797-822b-47cee0622886 status: 200 OK code: 200 duration: "" @@ -511,19 +1107,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:10 GMT + - Wed, 18 Oct 2023 16:37:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +1129,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 661e855d-efab-4365-8cad-d39b75ff73b2 + - 6023a928-abc9-4f51-8ba1-c7283a0c5115 status: 200 OK code: 200 duration: "" @@ -544,19 +1140,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:15 GMT + - Wed, 18 Oct 2023 16:37:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +1162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 544646b6-9fd6-4ca3-b12d-f2754cfcb538 + - 342b7472-50fb-4acc-aa63-1dc887223b70 status: 200 OK code: 200 duration: "" @@ -577,19 +1173,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:20 GMT + - Wed, 18 Oct 2023 16:37:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +1195,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55a2d7fa-e7bb-4b12-a721-9f4360d5a645 + - f7fa1224-36bd-4ecb-9c22-60e6b953e5a2 status: 200 OK code: 200 duration: "" @@ -610,19 +1206,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:25 GMT + - Wed, 18 Oct 2023 16:38:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,7 +1228,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b1a64d8-298c-4a72-a566-317d1be16ed9 + - be38099a-b797-4536-9c1d-58591486b7b2 status: 200 OK code: 200 duration: "" @@ -643,19 +1239,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:30 GMT + - Wed, 18 Oct 2023 16:38:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +1261,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ced0046-00ff-4dd9-85f9-3c558438b6e5 + - 186f15ce-5901-4882-901f-53ef585de6ab status: 200 OK code: 200 duration: "" @@ -676,19 +1272,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:35 GMT + - Wed, 18 Oct 2023 16:38:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,7 +1294,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1edd2eff-0dbb-4d4d-aeb2-4ce5d55a804a + - bb4e6b26-550f-4076-9f78-9cb59ecd2b1c status: 200 OK code: 200 duration: "" @@ -709,19 +1305,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:40 GMT + - Wed, 18 Oct 2023 16:38:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +1327,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de29720c-e12e-4f69-b1f8-10535f1733ce + - 1b44adf9-6a2d-4b97-bf4d-9f8e1f5dd071 status: 200 OK code: 200 duration: "" @@ -742,19 +1338,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:46 GMT + - Wed, 18 Oct 2023 16:38:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,7 +1360,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ebb371c-d94d-4204-8b5e-8bb62009c4b9 + - 5a1c056b-d885-470a-9c42-5097fc15c754 status: 200 OK code: 200 duration: "" @@ -775,19 +1371,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:51 GMT + - Wed, 18 Oct 2023 16:38:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -797,7 +1393,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2839e32-bc19-48f8-8953-20b66cd5123d + - 5d40c5d0-52bb-4b48-abb3-e0719cf96677 status: 200 OK code: 200 duration: "" @@ -808,19 +1404,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:56 GMT + - Wed, 18 Oct 2023 16:38:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -830,7 +1426,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2ec2a9e-500c-440d-8bca-c677a827e3ef + - 54892fa8-e0f5-4958-a485-deef5d77dc43 status: 200 OK code: 200 duration: "" @@ -841,19 +1437,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:01 GMT + - Wed, 18 Oct 2023 16:38:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -863,7 +1459,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd5c26c6-e77d-4135-9877-7f9205ad8d87 + - 5fd60919-368b-42ad-a3fc-e0b74e9915fa status: 200 OK code: 200 duration: "" @@ -874,19 +1470,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:06 GMT + - Wed, 18 Oct 2023 16:38:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -896,7 +1492,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 925d8c0d-5fb7-4435-85ba-c21fb59f1e95 + - bf9ced2f-cf98-4e50-b8ad-12ceb1e20210 status: 200 OK code: 200 duration: "" @@ -907,19 +1503,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:11 GMT + - Wed, 18 Oct 2023 16:38:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +1525,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d9b7be3-9029-43ff-9aac-804b8c85aa6b + - d4f8049e-4b07-49c1-a4db-745a279da15f status: 200 OK code: 200 duration: "" @@ -940,19 +1536,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:16 GMT + - Wed, 18 Oct 2023 16:38:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -962,7 +1558,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1e112e3-57b3-4752-a092-b22a84036cec + - 1d770883-c41d-4989-bb56-97ca849c72b6 status: 200 OK code: 200 duration: "" @@ -973,19 +1569,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:21 GMT + - Wed, 18 Oct 2023 16:39:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -995,7 +1591,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e88f9657-4e44-467d-a647-74b57e004b1a + - 8b97ba80-3101-42f5-ba01-514dc3e9e74c status: 200 OK code: 200 duration: "" @@ -1006,19 +1602,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:26 GMT + - Wed, 18 Oct 2023 16:39:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1028,7 +1624,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee398adf-5334-4c86-b9e0-40fb616b520c + - 501bed74-4284-4da1-b2cc-324d40c16385 status: 200 OK code: 200 duration: "" @@ -1039,19 +1635,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:31 GMT + - Wed, 18 Oct 2023 16:39:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1061,7 +1657,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7193763e-9df3-4db3-bac4-8af7e77baa1a + - 95ae5024-c32a-4704-9f73-4be6475ec25e status: 200 OK code: 200 duration: "" @@ -1072,19 +1668,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:36 GMT + - Wed, 18 Oct 2023 16:39:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1094,7 +1690,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3efc8455-86f4-4c4a-8532-6dd59b445477 + - 5875de44-da09-41d2-9285-e8682714f437 status: 200 OK code: 200 duration: "" @@ -1105,19 +1701,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:41 GMT + - Wed, 18 Oct 2023 16:39:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,7 +1723,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a897e66c-aed1-4225-9d5c-f78d301cd9e8 + - c9620921-7ca9-4dcd-99fb-b7005b41e6fe status: 200 OK code: 200 duration: "" @@ -1138,19 +1734,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:46 GMT + - Wed, 18 Oct 2023 16:39:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +1756,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9d38ae2-437d-47c7-918d-8e4a822f6260 + - 40241dfa-681b-4c99-9519-344f694d3b14 status: 200 OK code: 200 duration: "" @@ -1171,19 +1767,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:51 GMT + - Wed, 18 Oct 2023 16:39:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1193,7 +1789,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 614e84c3-a38b-4925-8ade-92d414266dac + - 947baa70-874c-4f92-9db8-cb918c9856f4 status: 200 OK code: 200 duration: "" @@ -1204,19 +1800,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:56 GMT + - Wed, 18 Oct 2023 16:39:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1226,7 +1822,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccfd16c0-45a4-432e-935b-9e86e6e8dede + - 32a61ae4-7f12-47af-9a3e-300c3c24488b status: 200 OK code: 200 duration: "" @@ -1237,19 +1833,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:01 GMT + - Wed, 18 Oct 2023 16:39:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1259,7 +1855,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27ce4a3c-5501-42b7-9ebf-9192f9b98001 + - c66b0741-b96c-44bf-a981-ec23d984bb27 status: 200 OK code: 200 duration: "" @@ -1270,19 +1866,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:07 GMT + - Wed, 18 Oct 2023 16:39:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1292,7 +1888,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64d4122c-08aa-4d02-ab04-14d7175edeac + - b29ca922-dd45-4159-989b-ffd8309aea4d status: 200 OK code: 200 duration: "" @@ -1303,19 +1899,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:12 GMT + - Wed, 18 Oct 2023 16:39:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1325,7 +1921,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90cd7804-a7a5-4e87-98f6-6e5aef862015 + - b76ef31e-ffdd-4c55-8010-a2de66046087 status: 200 OK code: 200 duration: "" @@ -1336,19 +1932,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:17 GMT + - Wed, 18 Oct 2023 16:39:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1358,7 +1954,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d6faa72-7da4-4df0-9a2a-e91e3265903c + - 22a8277b-e28a-4639-a242-2de60a93c659 status: 200 OK code: 200 duration: "" @@ -1369,19 +1965,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:22 GMT + - Wed, 18 Oct 2023 16:40:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1391,7 +1987,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc8ac017-7262-4b47-a11b-f8c1d7dcd102 + - 2361ec0d-5b8c-4706-bbe1-e2d615b65612 status: 200 OK code: 200 duration: "" @@ -1402,19 +1998,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:27 GMT + - Wed, 18 Oct 2023 16:40:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1424,7 +2020,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e041151-526d-4f3f-a20b-668412b63784 + - 27bf611f-4c6c-4ce2-a1ac-2216a862923c status: 200 OK code: 200 duration: "" @@ -1435,19 +2031,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:33 GMT + - Wed, 18 Oct 2023 16:40:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1457,7 +2053,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90424bea-d6c0-4bb8-8c76-0c227b6cc5bc + - ec2013ef-7d82-4eca-8231-0bad65576dca status: 200 OK code: 200 duration: "" @@ -1468,19 +2064,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:38 GMT + - Wed, 18 Oct 2023 16:40:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1490,7 +2086,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 506d952a-f4d4-4e4a-9120-b6e6eef12794 + - fc9478c5-d9a1-47a1-b4b2-b4f53b394b77 status: 200 OK code: 200 duration: "" @@ -1501,19 +2097,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:43 GMT + - Wed, 18 Oct 2023 16:40:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1523,7 +2119,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc6d2bb9-f71f-41ff-9765-c6b3a1e127c0 + - ae3d2d3a-18ca-4784-978c-9ed54ec59653 status: 200 OK code: 200 duration: "" @@ -1534,19 +2130,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:48 GMT + - Wed, 18 Oct 2023 16:40:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1556,7 +2152,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23f61bf8-921b-4578-b7d5-2b57a5f1b967 + - a034bca5-43bb-427c-9260-68398e96fde2 status: 200 OK code: 200 duration: "" @@ -1567,19 +2163,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:53 GMT + - Wed, 18 Oct 2023 16:40:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1589,7 +2185,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6817b613-e3ce-4e4f-97da-8dd21b3141ac + - 12395a06-15bb-4bda-bdee-c8df58635e1b status: 200 OK code: 200 duration: "" @@ -1600,19 +2196,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:58 GMT + - Wed, 18 Oct 2023 16:40:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1622,7 +2218,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7104ca41-1a7e-4609-b97f-f2f4029ddcb2 + - 221f6060-1dde-46d0-82c3-4e0a19ffd6f8 status: 200 OK code: 200 duration: "" @@ -1633,19 +2229,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:03 GMT + - Wed, 18 Oct 2023 16:40:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1655,7 +2251,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 709c93d1-3046-4065-a2dd-236ae51f66a2 + - 731ffe76-3e7a-42f8-93c2-bd8e073133de status: 200 OK code: 200 duration: "" @@ -1666,19 +2262,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:08 GMT + - Wed, 18 Oct 2023 16:40:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1688,7 +2284,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63563752-f2f2-46ce-bdf7-28536d5c0303 + - ee6b1e23-05c2-49cb-8ddd-991b68f92d72 status: 200 OK code: 200 duration: "" @@ -1699,19 +2295,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:13 GMT + - Wed, 18 Oct 2023 16:40:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1721,7 +2317,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff7081c1-7f60-49f3-a057-138c2b9de498 + - 87edcf8e-60aa-4622-812d-969efa53c6c0 status: 200 OK code: 200 duration: "" @@ -1732,19 +2328,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:18 GMT + - Wed, 18 Oct 2023 16:40:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1754,7 +2350,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad6193cc-2113-4363-9b3f-feb127324856 + - 045fabcf-8f7c-4f10-b16d-f04c0aca90e3 status: 200 OK code: 200 duration: "" @@ -1765,19 +2361,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:23 GMT + - Wed, 18 Oct 2023 16:41:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1787,7 +2383,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4708030c-ae30-4237-ba92-fc68d1c23e05 + - fec7a724-18bc-4826-87ef-43469e518574 status: 200 OK code: 200 duration: "" @@ -1798,19 +2394,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:28 GMT + - Wed, 18 Oct 2023 16:41:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1820,7 +2416,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06661bcc-a826-4379-93ce-22b92e1c7768 + - 45620b91-fc7f-4b6f-8478-5fdfc3be4e80 status: 200 OK code: 200 duration: "" @@ -1831,19 +2427,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:33 GMT + - Wed, 18 Oct 2023 16:41:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1853,7 +2449,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af5c3d2b-c0a4-4a41-ab26-cd2005e0ca49 + - 4b152877-672e-464d-af32-9496c62ed97d status: 200 OK code: 200 duration: "" @@ -1864,19 +2460,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:39 GMT + - Wed, 18 Oct 2023 16:41:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1886,7 +2482,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6b7311d-63cd-44f3-9269-3d3b36fe91a3 + - f0661d03-6b60-4467-9a93-0f94c9d90470 status: 200 OK code: 200 duration: "" @@ -1897,19 +2493,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:44 GMT + - Wed, 18 Oct 2023 16:41:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1919,7 +2515,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09934791-71ba-4f35-9ee7-89d10092607e + - bd31edd3-e6f8-4732-a7e4-231f101e2160 status: 200 OK code: 200 duration: "" @@ -1930,19 +2526,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:49 GMT + - Wed, 18 Oct 2023 16:41:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1952,7 +2548,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55186262-3448-4ce0-a210-8caed876ec43 + - 80a4ee0d-09d7-4e76-9c9a-9679e3fa3460 status: 200 OK code: 200 duration: "" @@ -1963,19 +2559,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:54 GMT + - Wed, 18 Oct 2023 16:41:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1985,7 +2581,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc663354-5572-4eb6-842a-48c280efb9d3 + - e055f900-a420-455b-b45c-789628f6ae26 status: 200 OK code: 200 duration: "" @@ -1996,19 +2592,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:59 GMT + - Wed, 18 Oct 2023 16:41:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2018,7 +2614,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a32777ec-56b8-430e-9186-6dcb957965f2 + - 213d3119-fc5c-4414-9074-a26a86c553c7 status: 200 OK code: 200 duration: "" @@ -2029,19 +2625,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:04 GMT + - Wed, 18 Oct 2023 16:41:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2051,7 +2647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65922ee3-8d9f-4f51-82a6-20722ae1861b + - 8ded4285-2c76-417a-abc6-bd3f42077733 status: 200 OK code: 200 duration: "" @@ -2062,19 +2658,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:09 GMT + - Wed, 18 Oct 2023 16:41:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2084,7 +2680,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b424866-7b69-435c-b526-8b363714e6fc + - 669292c7-8d25-49e8-80f6-b7246944fb89 status: 200 OK code: 200 duration: "" @@ -2095,19 +2691,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:14 GMT + - Wed, 18 Oct 2023 16:41:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2117,7 +2713,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be07e639-aec2-4227-85c1-18310a103b37 + - 870af36d-54a7-466d-adf9-b7f434aa06c1 status: 200 OK code: 200 duration: "" @@ -2128,19 +2724,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:19 GMT + - Wed, 18 Oct 2023 16:41:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2150,7 +2746,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 943c6361-6b67-4950-93ed-7bb0f2e07f89 + - 478ec55c-81a8-4901-bcb2-417656dd40cd status: 200 OK code: 200 duration: "" @@ -2161,19 +2757,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:24 GMT + - Wed, 18 Oct 2023 16:42:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2183,7 +2779,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b56283bf-c4a3-4d0c-83fa-33ea06fae804 + - 6c32aafc-21c0-4302-907f-de067f87e4e1 status: 200 OK code: 200 duration: "" @@ -2194,19 +2790,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:29 GMT + - Wed, 18 Oct 2023 16:42:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2216,7 +2812,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04c43bcb-00e5-4b6c-b45a-1ab93cb506d0 + - e833287c-93fa-423f-b7f8-e6a791f0b4f0 status: 200 OK code: 200 duration: "" @@ -2227,19 +2823,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:34 GMT + - Wed, 18 Oct 2023 16:42:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2249,7 +2845,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a4e47df-53e0-4ae9-8394-b37925bfb287 + - a4d70309-94b9-4373-ac27-04eb86f67a54 status: 200 OK code: 200 duration: "" @@ -2260,19 +2856,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:39 GMT + - Wed, 18 Oct 2023 16:42:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2282,7 +2878,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a64f00bf-2e83-48a4-87fc-345735adfe3b + - d973de64-fdd6-4314-9929-78aac7b2d674 status: 200 OK code: 200 duration: "" @@ -2293,19 +2889,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Wed, 18 Oct 2023 16:42:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2315,7 +2911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e27fdcca-b87b-417c-b817-ee194e91fe85 + - 333fae90-8553-4778-9faf-bb64df23d123 status: 200 OK code: 200 duration: "" @@ -2326,19 +2922,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:50 GMT + - Wed, 18 Oct 2023 16:42:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2348,7 +2944,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3cc9a52-e5dc-42de-aa37-30e5090cf1cf + - 0fd12908-c408-4445-994b-85cbd06980b0 status: 200 OK code: 200 duration: "" @@ -2359,19 +2955,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:55 GMT + - Wed, 18 Oct 2023 16:42:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2381,7 +2977,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6468a5e4-99de-4edf-8729-a0302626174d + - 2c505ad5-6c78-4957-9e0c-1534d52d1ce8 status: 200 OK code: 200 duration: "" @@ -2392,19 +2988,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:00 GMT + - Wed, 18 Oct 2023 16:42:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2414,7 +3010,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b697b099-6baf-4a0c-abcc-9fcd781798a0 + - 85e15e86-a053-4c32-bcd8-7e415cbd0cd9 status: 200 OK code: 200 duration: "" @@ -2425,19 +3021,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:05 GMT + - Wed, 18 Oct 2023 16:42:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2447,7 +3043,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 558cd999-2ccf-4376-94a8-b20124f3b7ff + - 7e3d41fb-7237-4aec-8eba-a3ccd2f5c392 status: 200 OK code: 200 duration: "" @@ -2458,19 +3054,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:10 GMT + - Wed, 18 Oct 2023 16:42:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2480,7 +3076,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f542cb8-28e7-4b52-9860-ca6f3469648d + - f3e6a0c8-14ec-4267-bed5-f4b99e0d37aa status: 200 OK code: 200 duration: "" @@ -2491,19 +3087,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:35:51.214360Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:15 GMT + - Wed, 18 Oct 2023 16:42:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2513,7 +3109,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54e4ef93-0a0b-4113-9d6b-9a95fac305ec + - 7e09903e-6857-4069-a9a4-237a3d64beb0 status: 200 OK code: 200 duration: "" @@ -2524,19 +3120,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:42:56.902696Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "675" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:20 GMT + - Wed, 18 Oct 2023 16:42:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2546,7 +3142,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9b44497-1646-4c80-8716-ec4985be089a + - 0bbc8902-6e89-40fc-b45c-f39608dc0871 status: 200 OK code: 200 duration: "" @@ -2557,19 +3153,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:00:32.403287Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:37:27.431187Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "675" + - "1511" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:25 GMT + - Wed, 18 Oct 2023 16:42:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2579,7 +3175,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcba1f96-fbb8-4703-a46f-fc5aa1c10b02 + - e7789d3d-3faa-4641-9321-ebd571526071 status: 200 OK code: 200 duration: "" @@ -2590,19 +3186,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:06:26.583827Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:42:56.902696Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "673" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:30 GMT + - Wed, 18 Oct 2023 16:42:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2612,7 +3208,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be2c9e96-f58b-450c-aff7-11772bcbf197 + - 9c726136-1bb7-4b92-872e-46ab9c24f674 status: 200 OK code: 200 duration: "" @@ -2623,19 +3219,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c/nodes?order_by=created_at_asc&page=1&pool_id=7afe9a29-6a28-4517-b03a-c10185add522&status=unknown method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:01:35.468349Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"nodes":[{"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:29.392797Z","error_message":null,"id":"977d1e00-3e4f-46cb-80cd-a9282f007379","name":"scw-test-pool-upgrade-test-pool-upgrade-977d1e","pool_id":"7afe9a29-6a28-4517-b03a-c10185add522","provider_id":"scaleway://instance/fr-par-1/8c13d366-fb99-4e41-a04f-d3fbcc233c1e","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:42:56.885788Z"}],"total_count":1}' headers: Content-Length: - - "1479" + - "660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:30 GMT + - Wed, 18 Oct 2023 16:42:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2645,7 +3241,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56381194-33ad-42e9-a607-7fe04138f7e1 + - d6c85d60-a68f-47ec-8168-cb9f7466d43e status: 200 OK code: 200 duration: "" @@ -2656,19 +3252,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:06:26.583827Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:37:27.431187Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "673" + - "1511" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:30 GMT + - Wed, 18 Oct 2023 16:42:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2678,7 +3274,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8292f8c-7ee4-488e-9b98-eeb1a294d631 + - e8d39061-b4b1-413c-b2d2-df68af7d1f33 status: 200 OK code: 200 duration: "" @@ -2689,19 +3285,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6/nodes?order_by=created_at_asc&page=1&pool_id=ee9c3de8-2f5a-4132-ba2f-270ca9df59fe&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"nodes":[{"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:03:24.499391Z","error_message":null,"id":"afe81ab0-f6a6-44cf-8536-6564a00c7692","name":"scw-k8spoolconfigupgradepolicy-default-afe81ab","pool_id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","provider_id":"scaleway://instance/fr-par-1/620da76f-4717-4338-b108-d415f3fa9bdd","public_ip_v4":"51.15.251.71","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:26.566812Z"}],"total_count":1}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:42:56.902696Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "620" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:30 GMT + - Wed, 18 Oct 2023 16:42:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2711,7 +3307,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aecf6e69-4504-4950-906e-44b2087968ac + - d0606798-0099-4233-bbb8-2538cbc54b83 status: 200 OK code: 200 duration: "" @@ -2722,19 +3318,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/07c1b4c0-aa12-4485-b99a-358f4db4ea36 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:01:35.468349Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"created_at":"2023-10-18T16:35:44.465392Z","dhcp_enabled":true,"id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.465392Z","id":"40e8207c-fd50-48b8-a880-6d481e30d7c3","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:35:44.465392Z"},{"created_at":"2023-10-18T16:35:44.465392Z","id":"6846558a-d0de-482f-ae6d-28b2a6233ccd","subnet":"fd63:256c:45f7:1fe4::/64","updated_at":"2023-10-18T16:35:44.465392Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.465392Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1479" + - "724" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:31 GMT + - Wed, 18 Oct 2023 16:42:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2744,7 +3340,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7aa7413-0e4b-42dd-9e13-9aeadab69594 + - 099f2ac9-d13a-4f2a-8f8f-b4044a7b73b2 status: 200 OK code: 200 duration: "" @@ -2755,19 +3351,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:06:26.583827Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:37:27.431187Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "673" + - "1511" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:31 GMT + - Wed, 18 Oct 2023 16:42:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2777,7 +3373,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37a2c7a6-ef10-437b-9dd4-a525afd745f8 + - c813b8e4-c029-46a8-b366-fa5574866063 status: 200 OK code: 200 duration: "" @@ -2788,19 +3384,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:01:35.468349Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRYcFZNRTR4YjFoRVZFMTZUVlJCZUU1NlJUSk5lbFV3VGpGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTbkZYQ2xKeWVrVnFibWR0Ym1kNlRVUTVXRkk0UlV4YWFYcEthRVZRZUZaUWNYaDNLMmhDZUZGSGFYbFpObWxqU3pNeU9IUk5XbVUxZDNJclVXTkxZWE5uYlcwS1JVWnJiVUZGS3pkbWVuRlRXVGxoTkRGVlFUSndWMHBKYUd0dlowaHdZbXhOZW1seVZXaG1ZazVSU2tOaFFrTkNNMDh2Y3paRmFITnhLMXBzVGpoNWNBcDRURWgzT1hWM1YwaHphMXBzT0ZSTWRFaHdiRkZWVTFaSE9EUkViRkpwWkVOU1ptSTFZV3BUYzJjMlZsa3JlVEUzYm1KbFpuQm1LekZ3UkVka01tMTVDbGxvZVZOdU5VNTFOMXB0WW5FMk1FcGFRMmRuV214dlpqaGpWMHBvYlV3MlRtTTJUVXQwY2s1WlNrRnJVbTl5TlUxVEwwTlRRV3hHUTBOblJHSTJObTBLVDJWQlRuVjFNMlYxUVRWNlFUZExZM0ZtYVVsSmFuQkJWSEo1UlZka1ZrUlhWbWc0WVZJdmRVOXRPVmN6WVV4d2NtWmhOakYxVjJGTk1sTmFValZPUkFwdVYyazFZV2N5YjBsM1ZuUkZWek5PTHpZNFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUFREZElNRWd6VWtaNWNHbGpkWGRCTmtwUEx6aFRTMGxCTUVsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1lqTjBVRXBrUlZWR1UyMVlORGhIUm1GbmMxWktlRVpPVkVkTFduTkRlRmw2ZW5SbVMzVXlVRTl2UWxCbGJtSXZUd3BUUkUxRk1qSmhVbkoxZFhCT09UVnBlRzVvYlM5TWJWVjRhbGQwYjNjMFRqY3haRW80U2t0MmJsUjNWVFp3UWpObE5XUlJkVzV6WWswNWJXbERhRzg0Q2tGWVkwaFBValp2VFRCUVZuZEthVGcxUzA5a1RtSmlXak5ZUzJKalVtSjVOVmRvZDFaVVExRXhVbXh0V2pkeWRIQklOMlpIYjNob2JEaHdaSGxOYlM4S1pucGhNVlptVTJSMWJqWnRPWGR6ZWpkYVVEZ3ZlSEZZVW5kcVdISlhPVk5RVUdsd2JuUjVlRXg2VXpGWWRrVmhObGd6YmpsRFRYQnBWbk5oYW5SWWFBb3pkRFp0T1dGMFlVUkRhMEYyTVVrMFpUWTBPVzFTVjJSTFVsRlFTR3BJTW1GelEydHdiemR5WmswM00zRmhabEpxWmxsSWVGY3JUbmN5TDBOU2FrbzBDbUYzYTBaQ2VGTkhWelpsU0ZwNGNYSmxkWFpqT0VGSlVHMUVlSEZZYkVoV1YxbDVSZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vOTM2ZjFmNGEtY2Y1YS00MjFkLWJhZTYtYzIwOWU2OGJkZjVjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBQMDB2bmRXS2lmaE5EVm02Q2wyMVRxSVVLSGtZNFZXVThkVndMeDFLa2NnQUd1MVlvU0xzYjc4Ug==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1479" + - "2686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:31 GMT + - Wed, 18 Oct 2023 16:42:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2810,7 +3406,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe3ee649-c796-4fc2-993a-236fec01bc78 + - 99aeb8f5-a8fd-4da3-a47c-c63d2deb0d00 status: 200 OK code: 200 duration: "" @@ -2821,19 +3417,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRDdHVDa1JvTmxadk5EVk5USGc1VG5WcVNGaElUa3gzVldocVZuZ3JaMWs1S3pKWk9HZE1PREJXVFhwRlp6QkVZbVp1VFV4bVZ6UjVVa0ZoY1hSMVJsbFRkM2dLYUd4VE5IbDFkU3RPYjA1TWFXZDRNRko0YVZsWU1VSnVOU3ROTm5kTFNHcDJaSGRaTTBWUVlWUm1SVzU1VTJGSVVXeDRWWE5TZGpKUFRXdHROVlZwY0FwSWQwZzRiRVV4VkRkM1psVllOalZCUVV4TlFUUklUVlV3YzIxTVpXa3dNMlpsYjJZd01tTldSMDVrTVZCcFUwZGlTVXh4WjBReU1FczBUMUpsVWxKQ0NqWkNNRGxaZFVwcFQzRTNMMmh2ZDJWeFlqUjNiSHBVU0M5QlZtaE1RMHNyUlhwek9HbE1Ra1pIUzI5V1dUa3pkV0ZRZDBKS1dESlVWR0pJTm0xVVJqZ0tWa0Y2Ykc1bGVqVTViMXBFVUV4ME0yVmxOSFFyVDJWV2FYa3dTbEpJUmsxTU1tZDZUbk5zYkdOVlluSnpWR2Q2Um5nMVNqZFRlWGxxYWpSclRHVk1hZ3AwVDBGbkwzaG9TVXRtTkdJeE4xQkRVME5OUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKUkhsU04wdzVZMHBFU1VFelptSk9URVUwTVdGRVoxWXdWSHBOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZETjIweFkycEdOVnB2UldoRFZURTFjMDFuWVdkM2RtaFdjRWxHVHpOUWVGWmpja3RsZVRGbk9WWnZaRkpzT0UxeVlncHhaazlyVUVwREt5OW9NSEkyYkdsS1NYbHRTRWxwUm05SVUxSnNWeko2UVVoeWFETnlTMnAxVmtKR1JHcFVXVzVPU25oc1dqbFpMemhIVkRabWNuZEZDbTFZVTNwUlZGQk5Wa293U2pJd2F5dEtXbWcxYTFaa1FrOUVhRVEzTmxKWFVVbDJTbE5JV0N0RVVWWmhjVEUyUzBkMmRtNUlkazFPTDNaNWRGaE5lRmdLTVRkRVRXWlRZVTlwVEcxVFJXVTFhM0ZwU21sTVVVUjBPWGxSUWtWMWJHWkpibEpTUkdaM1NYQm9SVGt6Y1VwdllrUlBia052T1ZKclNEWTRaVFZIYXdveWVXWnphbUZGVEZvMlFWYzFWa296WWl0Sk5tVlZhblpMVEM5WmJXOVBXVXczU1ZSemFYbDNjV3AzZUVWTWNXRnBWV0prWVZwTloxQkhlVkpwVWxwd0NqWlRNR3BNT1RGQ1NXaGFXR1ZzV1U4NU1uVkJkakJuUlVkbWNGWXhORXBCZVhReVNBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9kNTcwMGFlMy0yNjhjLTQ4YTctOWMyZi1mNjJjM2U0YWNhYTYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ3VwZ3JhZGVwb2xpY3kKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5IgogICAgdXNlcjogazhzcG9vbGNvbmZpZ3VwZ3JhZGVwb2xpY3ktYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlndXBncmFkZXBvbGljeQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBkanJpQnY4cWVuWnczYnRuYmVDVmJ0UzB0MUJxWGIxbzREdHA5N2Z3YjhMRE0zNjl1WFlwTFJERg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:42:56.902696Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2702" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:31 GMT + - Wed, 18 Oct 2023 16:42:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2843,7 +3439,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4ca9074-abab-44ba-b986-50e0ca90d2b9 + - 5649b44f-495c-480b-a91c-94a187798a00 status: 200 OK code: 200 duration: "" @@ -2854,19 +3450,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c/nodes?order_by=created_at_asc&page=1&pool_id=7afe9a29-6a28-4517-b03a-c10185add522&status=unknown method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:06:26.583827Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:29.392797Z","error_message":null,"id":"977d1e00-3e4f-46cb-80cd-a9282f007379","name":"scw-test-pool-upgrade-test-pool-upgrade-977d1e","pool_id":"7afe9a29-6a28-4517-b03a-c10185add522","provider_id":"scaleway://instance/fr-par-1/8c13d366-fb99-4e41-a04f-d3fbcc233c1e","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:42:56.885788Z"}],"total_count":1}' headers: Content-Length: - - "673" + - "660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:31 GMT + - Wed, 18 Oct 2023 16:42:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2876,7 +3472,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7cbe395-74c0-4ce8-8d10-08c097815cdf + - 09a8be03-0825-45bb-89e6-d52186756b51 status: 200 OK code: 200 duration: "" @@ -2887,19 +3483,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6/nodes?order_by=created_at_asc&page=1&pool_id=ee9c3de8-2f5a-4132-ba2f-270ca9df59fe&status=unknown + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/07c1b4c0-aa12-4485-b99a-358f4db4ea36 method: GET response: - body: '{"nodes":[{"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:03:24.499391Z","error_message":null,"id":"afe81ab0-f6a6-44cf-8536-6564a00c7692","name":"scw-k8spoolconfigupgradepolicy-default-afe81ab","pool_id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","provider_id":"scaleway://instance/fr-par-1/620da76f-4717-4338-b108-d415f3fa9bdd","public_ip_v4":"51.15.251.71","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:26.566812Z"}],"total_count":1}' + body: '{"created_at":"2023-10-18T16:35:44.465392Z","dhcp_enabled":true,"id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.465392Z","id":"40e8207c-fd50-48b8-a880-6d481e30d7c3","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:35:44.465392Z"},{"created_at":"2023-10-18T16:35:44.465392Z","id":"6846558a-d0de-482f-ae6d-28b2a6233ccd","subnet":"fd63:256c:45f7:1fe4::/64","updated_at":"2023-10-18T16:35:44.465392Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.465392Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "620" + - "724" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:31 GMT + - Wed, 18 Oct 2023 16:42:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2909,7 +3505,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 255c9280-7ccd-4975-b447-0e244decb09f + - 3df4728f-691a-4a8b-bbbe-8a5007c9b66a status: 200 OK code: 200 duration: "" @@ -2920,19 +3516,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:01:35.468349Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:37:27.431187Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1479" + - "1511" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:32 GMT + - Wed, 18 Oct 2023 16:42:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2942,7 +3538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7390452-2b86-4712-bdec-a6202c900d2b + - d7c03140-6a71-4f14-a1ce-9a0850fe0505 status: 200 OK code: 200 duration: "" @@ -2953,19 +3549,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRDdHVDa1JvTmxadk5EVk5USGc1VG5WcVNGaElUa3gzVldocVZuZ3JaMWs1S3pKWk9HZE1PREJXVFhwRlp6QkVZbVp1VFV4bVZ6UjVVa0ZoY1hSMVJsbFRkM2dLYUd4VE5IbDFkU3RPYjA1TWFXZDRNRko0YVZsWU1VSnVOU3ROTm5kTFNHcDJaSGRaTTBWUVlWUm1SVzU1VTJGSVVXeDRWWE5TZGpKUFRXdHROVlZwY0FwSWQwZzRiRVV4VkRkM1psVllOalZCUVV4TlFUUklUVlV3YzIxTVpXa3dNMlpsYjJZd01tTldSMDVrTVZCcFUwZGlTVXh4WjBReU1FczBUMUpsVWxKQ0NqWkNNRGxaZFVwcFQzRTNMMmh2ZDJWeFlqUjNiSHBVU0M5QlZtaE1RMHNyUlhwek9HbE1Ra1pIUzI5V1dUa3pkV0ZRZDBKS1dESlVWR0pJTm0xVVJqZ0tWa0Y2Ykc1bGVqVTViMXBFVUV4ME0yVmxOSFFyVDJWV2FYa3dTbEpJUmsxTU1tZDZUbk5zYkdOVlluSnpWR2Q2Um5nMVNqZFRlWGxxYWpSclRHVk1hZ3AwVDBGbkwzaG9TVXRtTkdJeE4xQkRVME5OUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKUkhsU04wdzVZMHBFU1VFelptSk9URVUwTVdGRVoxWXdWSHBOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZETjIweFkycEdOVnB2UldoRFZURTFjMDFuWVdkM2RtaFdjRWxHVHpOUWVGWmpja3RsZVRGbk9WWnZaRkpzT0UxeVlncHhaazlyVUVwREt5OW9NSEkyYkdsS1NYbHRTRWxwUm05SVUxSnNWeko2UVVoeWFETnlTMnAxVmtKR1JHcFVXVzVPU25oc1dqbFpMemhIVkRabWNuZEZDbTFZVTNwUlZGQk5Wa293U2pJd2F5dEtXbWcxYTFaa1FrOUVhRVEzTmxKWFVVbDJTbE5JV0N0RVVWWmhjVEUyUzBkMmRtNUlkazFPTDNaNWRGaE5lRmdLTVRkRVRXWlRZVTlwVEcxVFJXVTFhM0ZwU21sTVVVUjBPWGxSUWtWMWJHWkpibEpTUkdaM1NYQm9SVGt6Y1VwdllrUlBia052T1ZKclNEWTRaVFZIYXdveWVXWnphbUZGVEZvMlFWYzFWa296WWl0Sk5tVlZhblpMVEM5WmJXOVBXVXczU1ZSemFYbDNjV3AzZUVWTWNXRnBWV0prWVZwTloxQkhlVkpwVWxwd0NqWlRNR3BNT1RGQ1NXaGFXR1ZzV1U4NU1uVkJkakJuUlVkbWNGWXhORXBCZVhReVNBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9kNTcwMGFlMy0yNjhjLTQ4YTctOWMyZi1mNjJjM2U0YWNhYTYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ3VwZ3JhZGVwb2xpY3kKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5IgogICAgdXNlcjogazhzcG9vbGNvbmZpZ3VwZ3JhZGVwb2xpY3ktYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlndXBncmFkZXBvbGljeQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBkanJpQnY4cWVuWnczYnRuYmVDVmJ0UzB0MUJxWGIxbzREdHA5N2Z3YjhMRE0zNjl1WFlwTFJERg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRYcFZNRTR4YjFoRVZFMTZUVlJCZUU1NlJUSk5lbFV3VGpGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTbkZYQ2xKeWVrVnFibWR0Ym1kNlRVUTVXRkk0UlV4YWFYcEthRVZRZUZaUWNYaDNLMmhDZUZGSGFYbFpObWxqU3pNeU9IUk5XbVUxZDNJclVXTkxZWE5uYlcwS1JVWnJiVUZGS3pkbWVuRlRXVGxoTkRGVlFUSndWMHBKYUd0dlowaHdZbXhOZW1seVZXaG1ZazVSU2tOaFFrTkNNMDh2Y3paRmFITnhLMXBzVGpoNWNBcDRURWgzT1hWM1YwaHphMXBzT0ZSTWRFaHdiRkZWVTFaSE9EUkViRkpwWkVOU1ptSTFZV3BUYzJjMlZsa3JlVEUzYm1KbFpuQm1LekZ3UkVka01tMTVDbGxvZVZOdU5VNTFOMXB0WW5FMk1FcGFRMmRuV214dlpqaGpWMHBvYlV3MlRtTTJUVXQwY2s1WlNrRnJVbTl5TlUxVEwwTlRRV3hHUTBOblJHSTJObTBLVDJWQlRuVjFNMlYxUVRWNlFUZExZM0ZtYVVsSmFuQkJWSEo1UlZka1ZrUlhWbWc0WVZJdmRVOXRPVmN6WVV4d2NtWmhOakYxVjJGTk1sTmFValZPUkFwdVYyazFZV2N5YjBsM1ZuUkZWek5PTHpZNFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUFREZElNRWd6VWtaNWNHbGpkWGRCTmtwUEx6aFRTMGxCTUVsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1lqTjBVRXBrUlZWR1UyMVlORGhIUm1GbmMxWktlRVpPVkVkTFduTkRlRmw2ZW5SbVMzVXlVRTl2UWxCbGJtSXZUd3BUUkUxRk1qSmhVbkoxZFhCT09UVnBlRzVvYlM5TWJWVjRhbGQwYjNjMFRqY3haRW80U2t0MmJsUjNWVFp3UWpObE5XUlJkVzV6WWswNWJXbERhRzg0Q2tGWVkwaFBValp2VFRCUVZuZEthVGcxUzA5a1RtSmlXak5ZUzJKalVtSjVOVmRvZDFaVVExRXhVbXh0V2pkeWRIQklOMlpIYjNob2JEaHdaSGxOYlM4S1pucGhNVlptVTJSMWJqWnRPWGR6ZWpkYVVEZ3ZlSEZZVW5kcVdISlhPVk5RVUdsd2JuUjVlRXg2VXpGWWRrVmhObGd6YmpsRFRYQnBWbk5oYW5SWWFBb3pkRFp0T1dGMFlVUkRhMEYyTVVrMFpUWTBPVzFTVjJSTFVsRlFTR3BJTW1GelEydHdiemR5WmswM00zRmhabEpxWmxsSWVGY3JUbmN5TDBOU2FrbzBDbUYzYTBaQ2VGTkhWelpsU0ZwNGNYSmxkWFpqT0VGSlVHMUVlSEZZYkVoV1YxbDVSZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vOTM2ZjFmNGEtY2Y1YS00MjFkLWJhZTYtYzIwOWU2OGJkZjVjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBQMDB2bmRXS2lmaE5EVm02Q2wyMVRxSVVLSGtZNFZXVThkVndMeDFLa2NnQUd1MVlvU0xzYjc4Ug==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2702" + - "2686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:32 GMT + - Wed, 18 Oct 2023 16:42:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2975,7 +3571,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 737a0028-95b3-4859-88c2-5cd4ebc92add + - bb4b68c2-a702-4c36-b0c8-1cbdfd86ac9a status: 200 OK code: 200 duration: "" @@ -2986,19 +3582,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:06:26.583827Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:42:56.902696Z","upgrade_policy":{"max_surge":2,"max_unavailable":3},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "673" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:32 GMT + - Wed, 18 Oct 2023 16:42:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3008,7 +3604,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41b530ce-815d-40c5-862e-e4f434a7ef8c + - 77058a76-2296-474d-bb2e-20baa70521de status: 200 OK code: 200 duration: "" @@ -3019,19 +3615,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6/nodes?order_by=created_at_asc&page=1&pool_id=ee9c3de8-2f5a-4132-ba2f-270ca9df59fe&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c/nodes?order_by=created_at_asc&page=1&pool_id=7afe9a29-6a28-4517-b03a-c10185add522&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:03:24.499391Z","error_message":null,"id":"afe81ab0-f6a6-44cf-8536-6564a00c7692","name":"scw-k8spoolconfigupgradepolicy-default-afe81ab","pool_id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","provider_id":"scaleway://instance/fr-par-1/620da76f-4717-4338-b108-d415f3fa9bdd","public_ip_v4":"51.15.251.71","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:26.566812Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:29.392797Z","error_message":null,"id":"977d1e00-3e4f-46cb-80cd-a9282f007379","name":"scw-test-pool-upgrade-test-pool-upgrade-977d1e","pool_id":"7afe9a29-6a28-4517-b03a-c10185add522","provider_id":"scaleway://instance/fr-par-1/8c13d366-fb99-4e41-a04f-d3fbcc233c1e","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:42:56.885788Z"}],"total_count":1}' headers: Content-Length: - - "620" + - "660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:32 GMT + - Wed, 18 Oct 2023 16:42:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3041,7 +3637,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59bcbd2d-9713-4ef2-9be2-1fe6cecd34a3 + - bd6f9fc0-8418-4593-8c94-6d57a741de94 status: 200 OK code: 200 duration: "" @@ -3054,19 +3650,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: PATCH response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:06:32.765432445Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:43:00.391025488Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "693" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 44f3850c-3d5c-4b03-987c-f0225b117d01 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:43:00.391025Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "676" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:36 GMT + - Wed, 18 Oct 2023 16:43:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3076,7 +3705,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b1e638e-57bf-4c25-a797-4200b944b9c2 + - 4435a08f-a8f8-4d76-8dbb-56512000c94f status: 200 OK code: 200 duration: "" @@ -3087,19 +3716,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:06:32.765432Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:43:00.391025Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "673" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:36 GMT + - Wed, 18 Oct 2023 16:43:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3109,7 +3738,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9def1b1-f2db-4a9c-9518-5bcea9260b36 + - 4101b686-1e53-4a2c-bc64-a84b6e0c33aa status: 200 OK code: 200 duration: "" @@ -3120,19 +3749,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c/nodes?order_by=created_at_asc&page=1&pool_id=7afe9a29-6a28-4517-b03a-c10185add522&status=unknown method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:06:32.765432Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:29.392797Z","error_message":null,"id":"977d1e00-3e4f-46cb-80cd-a9282f007379","name":"scw-test-pool-upgrade-test-pool-upgrade-977d1e","pool_id":"7afe9a29-6a28-4517-b03a-c10185add522","provider_id":"scaleway://instance/fr-par-1/8c13d366-fb99-4e41-a04f-d3fbcc233c1e","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:42:56.885788Z"}],"total_count":1}' headers: Content-Length: - - "673" + - "660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:36 GMT + - Wed, 18 Oct 2023 16:43:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3142,7 +3771,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4334a451-24c0-4eab-a90d-61a412172435 + - e4fc6b74-2f81-4c99-b5b8-fe98fe45945e status: 200 OK code: 200 duration: "" @@ -3153,19 +3782,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6/nodes?order_by=created_at_asc&page=1&pool_id=ee9c3de8-2f5a-4132-ba2f-270ca9df59fe&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"nodes":[{"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:03:24.499391Z","error_message":null,"id":"afe81ab0-f6a6-44cf-8536-6564a00c7692","name":"scw-k8spoolconfigupgradepolicy-default-afe81ab","pool_id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","provider_id":"scaleway://instance/fr-par-1/620da76f-4717-4338-b108-d415f3fa9bdd","public_ip_v4":"51.15.251.71","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:26.566812Z"}],"total_count":1}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:37:27.431187Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "620" + - "1511" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:36 GMT + - Wed, 18 Oct 2023 16:43:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3175,7 +3804,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0670a6e9-ecda-4cb0-8fb5-9cdee1bc9ea2 + - 878e9b7b-bbd9-4f33-ae6d-5fd766652f4a status: 200 OK code: 200 duration: "" @@ -3186,19 +3815,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:01:35.468349Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:43:00.391025Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1479" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:36 GMT + - Wed, 18 Oct 2023 16:43:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3208,7 +3837,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d83bb05-0301-49e8-9b9b-b69804843d0f + - b1a03551-9634-4dea-ae70-4f09146ed51e status: 200 OK code: 200 duration: "" @@ -3219,19 +3848,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/07c1b4c0-aa12-4485-b99a-358f4db4ea36 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:06:32.765432Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-18T16:35:44.465392Z","dhcp_enabled":true,"id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","name":"test-pool-upgrade-policy","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.465392Z","id":"40e8207c-fd50-48b8-a880-6d481e30d7c3","subnet":"172.16.8.0/22","updated_at":"2023-10-18T16:35:44.465392Z"},{"created_at":"2023-10-18T16:35:44.465392Z","id":"6846558a-d0de-482f-ae6d-28b2a6233ccd","subnet":"fd63:256c:45f7:1fe4::/64","updated_at":"2023-10-18T16:35:44.465392Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.465392Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "673" + - "724" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:36 GMT + - Wed, 18 Oct 2023 16:43:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3241,7 +3870,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11bd9661-879c-4a42-8d8b-5afd329683bf + - 9b9ca1b3-9f58-42d5-8c9e-da6d59cfc4e0 status: 200 OK code: 200 duration: "" @@ -3252,19 +3881,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:01:35.468349Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:37:27.431187Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1479" + - "1511" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:37 GMT + - Wed, 18 Oct 2023 16:43:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3274,7 +3903,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4b96bb0-2e5a-4228-b35a-71dfe8c959cd + - 7525597f-33f4-4d90-b02e-704d90c5940d status: 200 OK code: 200 duration: "" @@ -3285,19 +3914,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlRDdHVDa1JvTmxadk5EVk5USGc1VG5WcVNGaElUa3gzVldocVZuZ3JaMWs1S3pKWk9HZE1PREJXVFhwRlp6QkVZbVp1VFV4bVZ6UjVVa0ZoY1hSMVJsbFRkM2dLYUd4VE5IbDFkU3RPYjA1TWFXZDRNRko0YVZsWU1VSnVOU3ROTm5kTFNHcDJaSGRaTTBWUVlWUm1SVzU1VTJGSVVXeDRWWE5TZGpKUFRXdHROVlZwY0FwSWQwZzRiRVV4VkRkM1psVllOalZCUVV4TlFUUklUVlV3YzIxTVpXa3dNMlpsYjJZd01tTldSMDVrTVZCcFUwZGlTVXh4WjBReU1FczBUMUpsVWxKQ0NqWkNNRGxaZFVwcFQzRTNMMmh2ZDJWeFlqUjNiSHBVU0M5QlZtaE1RMHNyUlhwek9HbE1Ra1pIUzI5V1dUa3pkV0ZRZDBKS1dESlVWR0pJTm0xVVJqZ0tWa0Y2Ykc1bGVqVTViMXBFVUV4ME0yVmxOSFFyVDJWV2FYa3dTbEpJUmsxTU1tZDZUbk5zYkdOVlluSnpWR2Q2Um5nMVNqZFRlWGxxYWpSclRHVk1hZ3AwVDBGbkwzaG9TVXRtTkdJeE4xQkRVME5OUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpKUkhsU04wdzVZMHBFU1VFelptSk9URVUwTVdGRVoxWXdWSHBOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZETjIweFkycEdOVnB2UldoRFZURTFjMDFuWVdkM2RtaFdjRWxHVHpOUWVGWmpja3RsZVRGbk9WWnZaRkpzT0UxeVlncHhaazlyVUVwREt5OW9NSEkyYkdsS1NYbHRTRWxwUm05SVUxSnNWeko2UVVoeWFETnlTMnAxVmtKR1JHcFVXVzVPU25oc1dqbFpMemhIVkRabWNuZEZDbTFZVTNwUlZGQk5Wa293U2pJd2F5dEtXbWcxYTFaa1FrOUVhRVEzTmxKWFVVbDJTbE5JV0N0RVVWWmhjVEUyUzBkMmRtNUlkazFPTDNaNWRGaE5lRmdLTVRkRVRXWlRZVTlwVEcxVFJXVTFhM0ZwU21sTVVVUjBPWGxSUWtWMWJHWkpibEpTUkdaM1NYQm9SVGt6Y1VwdllrUlBia052T1ZKclNEWTRaVFZIYXdveWVXWnphbUZGVEZvMlFWYzFWa296WWl0Sk5tVlZhblpMVEM5WmJXOVBXVXczU1ZSemFYbDNjV3AzZUVWTWNXRnBWV0prWVZwTloxQkhlVkpwVWxwd0NqWlRNR3BNT1RGQ1NXaGFXR1ZzV1U4NU1uVkJkakJuUlVkbWNGWXhORXBCZVhReVNBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9kNTcwMGFlMy0yNjhjLTQ4YTctOWMyZi1mNjJjM2U0YWNhYTYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ3VwZ3JhZGVwb2xpY3kKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5IgogICAgdXNlcjogazhzcG9vbGNvbmZpZ3VwZ3JhZGVwb2xpY3ktYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlndXBncmFkZXBvbGljeQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWd1cGdyYWRlcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBkanJpQnY4cWVuWnczYnRuYmVDVmJ0UzB0MUJxWGIxbzREdHA5N2Z3YjhMRE0zNjl1WFlwTFJERg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC11cGdyYWRlLXBvbGljeSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVeVRYcFZNRTR4YjFoRVZFMTZUVlJCZUU1NlJUSk5lbFV3VGpGdmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTbkZYQ2xKeWVrVnFibWR0Ym1kNlRVUTVXRkk0UlV4YWFYcEthRVZRZUZaUWNYaDNLMmhDZUZGSGFYbFpObWxqU3pNeU9IUk5XbVUxZDNJclVXTkxZWE5uYlcwS1JVWnJiVUZGS3pkbWVuRlRXVGxoTkRGVlFUSndWMHBKYUd0dlowaHdZbXhOZW1seVZXaG1ZazVSU2tOaFFrTkNNMDh2Y3paRmFITnhLMXBzVGpoNWNBcDRURWgzT1hWM1YwaHphMXBzT0ZSTWRFaHdiRkZWVTFaSE9EUkViRkpwWkVOU1ptSTFZV3BUYzJjMlZsa3JlVEUzYm1KbFpuQm1LekZ3UkVka01tMTVDbGxvZVZOdU5VNTFOMXB0WW5FMk1FcGFRMmRuV214dlpqaGpWMHBvYlV3MlRtTTJUVXQwY2s1WlNrRnJVbTl5TlUxVEwwTlRRV3hHUTBOblJHSTJObTBLVDJWQlRuVjFNMlYxUVRWNlFUZExZM0ZtYVVsSmFuQkJWSEo1UlZka1ZrUlhWbWc0WVZJdmRVOXRPVmN6WVV4d2NtWmhOakYxVjJGTk1sTmFValZPUkFwdVYyazFZV2N5YjBsM1ZuUkZWek5PTHpZNFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaUFREZElNRWd6VWtaNWNHbGpkWGRCTmtwUEx6aFRTMGxCTUVsTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1lqTjBVRXBrUlZWR1UyMVlORGhIUm1GbmMxWktlRVpPVkVkTFduTkRlRmw2ZW5SbVMzVXlVRTl2UWxCbGJtSXZUd3BUUkUxRk1qSmhVbkoxZFhCT09UVnBlRzVvYlM5TWJWVjRhbGQwYjNjMFRqY3haRW80U2t0MmJsUjNWVFp3UWpObE5XUlJkVzV6WWswNWJXbERhRzg0Q2tGWVkwaFBValp2VFRCUVZuZEthVGcxUzA5a1RtSmlXak5ZUzJKalVtSjVOVmRvZDFaVVExRXhVbXh0V2pkeWRIQklOMlpIYjNob2JEaHdaSGxOYlM4S1pucGhNVlptVTJSMWJqWnRPWGR6ZWpkYVVEZ3ZlSEZZVW5kcVdISlhPVk5RVUdsd2JuUjVlRXg2VXpGWWRrVmhObGd6YmpsRFRYQnBWbk5oYW5SWWFBb3pkRFp0T1dGMFlVUkRhMEYyTVVrMFpUWTBPVzFTVjJSTFVsRlFTR3BJTW1GelEydHdiemR5WmswM00zRmhabEpxWmxsSWVGY3JUbmN5TDBOU2FrbzBDbUYzYTBaQ2VGTkhWelpsU0ZwNGNYSmxkWFpqT0VGSlVHMUVlSEZZYkVoV1YxbDVSZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vOTM2ZjFmNGEtY2Y1YS00MjFkLWJhZTYtYzIwOWU2OGJkZjVjLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC11cGdyYWRlLXBvbGljeQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5IgogICAgdXNlcjogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC1wb29sLXVwZ3JhZGUtcG9saWN5LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBQMDB2bmRXS2lmaE5EVm02Q2wyMVRxSVVLSGtZNFZXVThkVndMeDFLa2NnQUd1MVlvU0xzYjc4Ug==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2702" + - "2686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:37 GMT + - Wed, 18 Oct 2023 16:43:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3307,7 +3936,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b53d4f3-d610-4e82-8518-8f3a665010ad + - df4f8e5f-67aa-4602-b05e-8d3a1021b927 status: 200 OK code: 200 duration: "" @@ -3318,19 +3947,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:06:32.765432Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:43:00.391025Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "673" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:37 GMT + - Wed, 18 Oct 2023 16:43:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3340,7 +3969,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c75b213f-5149-4900-8678-137f86772dd6 + - 677475ba-2686-44cd-b8a5-86e7115f2f7e status: 200 OK code: 200 duration: "" @@ -3351,19 +3980,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6/nodes?order_by=created_at_asc&page=1&pool_id=ee9c3de8-2f5a-4132-ba2f-270ca9df59fe&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c/nodes?order_by=created_at_asc&page=1&pool_id=7afe9a29-6a28-4517-b03a-c10185add522&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:03:24.499391Z","error_message":null,"id":"afe81ab0-f6a6-44cf-8536-6564a00c7692","name":"scw-k8spoolconfigupgradepolicy-default-afe81ab","pool_id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","provider_id":"scaleway://instance/fr-par-1/620da76f-4717-4338-b108-d415f3fa9bdd","public_ip_v4":"51.15.251.71","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:37.038549Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:29.392797Z","error_message":null,"id":"977d1e00-3e4f-46cb-80cd-a9282f007379","name":"scw-test-pool-upgrade-test-pool-upgrade-977d1e","pool_id":"7afe9a29-6a28-4517-b03a-c10185add522","provider_id":"scaleway://instance/fr-par-1/8c13d366-fb99-4e41-a04f-d3fbcc233c1e","public_ip_v4":"163.172.143.139","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:43:01.069810Z"}],"total_count":1}' headers: Content-Length: - - "650" + - "660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:37 GMT + - Wed, 18 Oct 2023 16:43:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3373,7 +4002,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc1089d7-46a8-4fda-b524-1378a90e2ae0 + - 408b9a56-a59f-49f3-b6bf-6cb27179da63 status: 200 OK code: 200 duration: "" @@ -3384,19 +4013,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/ee9c3de8-2f5a-4132-ba2f-270ca9df59fe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/7afe9a29-6a28-4517-b03a-c10185add522 method: DELETE response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.390736Z","id":"ee9c3de8-2f5a-4132-ba2f-270ca9df59fe","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-17T10:06:38.106867920Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.207222Z","id":"7afe9a29-6a28-4517-b03a-c10185add522","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-upgrade-policy","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"updated_at":"2023-10-18T16:43:02.322148224Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "679" + - "696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:38 GMT + - Wed, 18 Oct 2023 16:43:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3406,7 +4035,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e19f1114-5e09-414c-9ab8-eda674d6fbb6 + - a3405364-acbb-4574-91a6-c766fb4ea52e status: 200 OK code: 200 duration: "" @@ -3417,19 +4046,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c?with_additional_resources=true method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:06:38.193015084Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:43:02.405696234Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1517" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 77bd148d-83cf-4474-be88-85436effb587 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:43:02.405696Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1485" + - "1514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:38 GMT + - Wed, 18 Oct 2023 16:43:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3439,7 +4101,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8aa3d0c-cc77-4060-886a-a5b4f2a6046b + - 3eb13fb0-f98c-4912-8caf-943b9de84531 status: 200 OK code: 200 duration: "" @@ -3450,19 +4112,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:06:38.193015Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:43:02.405696Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1482" + - "1514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:38 GMT + - Wed, 18 Oct 2023 16:43:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3472,7 +4134,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 848f5a9c-7b56-4fb9-a12e-8eb8a1458251 + - d2b88637-a8e7-496d-b3bf-eba96b6ee857 status: 200 OK code: 200 duration: "" @@ -3483,19 +4145,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:06:38.193015Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:43:02.405696Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1482" + - "1514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:43 GMT + - Wed, 18 Oct 2023 16:43:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3505,7 +4167,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 629b3578-d560-42de-9985-5c114f92e8e4 + - 513041bd-6204-47fe-be97-5cc4abac65c3 status: 200 OK code: 200 duration: "" @@ -3516,19 +4178,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:06:38.193015Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:43:02.405696Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1482" + - "1514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:48 GMT + - Wed, 18 Oct 2023 16:43:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3538,7 +4200,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32d25fbb-e7b7-4eba-bdf1-6776944df2a0 + - 4d73ea62-bf8e-4750-85ea-337e5a5ee234 status: 200 OK code: 200 duration: "" @@ -3549,19 +4211,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:06:38.193015Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:43:02.405696Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1482" + - "1514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:53 GMT + - Wed, 18 Oct 2023 16:43:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3571,7 +4233,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07e04a31-0d96-48cd-b94b-24ea39a757c0 + - 69f6c231-721e-429e-b5d8-15f21aeaf8f3 status: 200 OK code: 200 duration: "" @@ -3582,19 +4244,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:06:38.193015Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:43:02.405696Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1482" + - "1514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:58 GMT + - Wed, 18 Oct 2023 16:43:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3604,7 +4266,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ea2901c-68c5-4ea6-98c4-66320349d4b5 + - 895322fe-b9c5-4f07-a3cd-0513dd202f79 status: 200 OK code: 200 duration: "" @@ -3615,19 +4277,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.904201Z","created_at":"2023-10-17T10:00:26.904201Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d5700ae3-268c-48a7-9c2f-f62c3e4acaa6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","ingress":"none","name":"K8SPoolConfigUpgradePolicy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-17T10:06:38.193015Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://936f1f4a-cf5a-421d-bae6-c209e68bdf5c.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.731242Z","created_at":"2023-10-18T16:35:45.731242Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.936f1f4a-cf5a-421d-bae6-c209e68bdf5c.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","ingress":"none","name":"test-pool-upgrade-policy","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","upgrade_policy"],"type":"kapsule","updated_at":"2023-10-18T16:43:02.405696Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1482" + - "1514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:03 GMT + - Wed, 18 Oct 2023 16:43:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3637,7 +4299,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9096d38f-65d2-4797-a8ec-9664c080194a + - 5effed0b-3101-45b7-933b-c680bd93908b status: 200 OK code: 200 duration: "" @@ -3648,10 +4310,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","type":"not_found"}' headers: Content-Length: - "128" @@ -3660,7 +4322,40 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:08 GMT + - Wed, 18 Oct 2023 16:43:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb7ac07a-b575-402a-a723-938526dfb63c + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/07c1b4c0-aa12-4485-b99a-358f4db4ea36 + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"07c1b4c0-aa12-4485-b99a-358f4db4ea36","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3670,7 +4365,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8b7c8b9-ac7d-4109-bbbe-a0902d910005 + - 54e102c6-4053-458e-acb1-2497f56c5aa6 status: 404 Not Found code: 404 duration: "" @@ -3681,10 +4376,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d5700ae3-268c-48a7-9c2f-f62c3e4acaa6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/936f1f4a-cf5a-421d-bae6-c209e68bdf5c method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"d5700ae3-268c-48a7-9c2f-f62c3e4acaa6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"936f1f4a-cf5a-421d-bae6-c209e68bdf5c","type":"not_found"}' headers: Content-Length: - "128" @@ -3693,7 +4388,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:08 GMT + - Wed, 18 Oct 2023 16:43:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3703,7 +4398,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64e472ed-5149-4e94-8f61-88972a8b9125 + - 46e326e2-1109-4a59-9b95-e0a636bfb38e status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-pool-wait.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-wait.cassette.yaml index ae15db00f5..964b231fd9 100644 --- a/scaleway/testdata/k8s-cluster-pool-wait.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-pool-wait.cassette.yaml @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:21 GMT + - Thu, 19 Oct 2023 16:34:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,80 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c033388a-3f3d-4bcc-bf0f-a123f30c6528 + - eb138bfe-332b-496f-859b-f6573b7288f6 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"PoolConfigWait","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-pool-wait","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-19T16:34:41.054613Z","dhcp_enabled":true,"id":"882a0149-d4f0-470c-8a36-650eb9f9c627","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:34:41.054613Z","id":"29e823e2-bb1a-4e49-b0e6-726aeafb43b6","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:34:41.054613Z"},{"created_at":"2023-10-19T16:34:41.054613Z","id":"57b44457-ecb1-48e2-86a5-5d7cf356e438","subnet":"fd63:256c:45f7:d0e7::/64","updated_at":"2023-10-19T16:34:41.054613Z"}],"tags":[],"updated_at":"2023-10-19T16:34:41.054613Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 09aef2d5-1a21-4f91-bbd5-8ea4c4f11c28 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/882a0149-d4f0-470c-8a36-650eb9f9c627 + method: GET + response: + body: '{"created_at":"2023-10-19T16:34:41.054613Z","dhcp_enabled":true,"id":"882a0149-d4f0-470c-8a36-650eb9f9c627","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:34:41.054613Z","id":"29e823e2-bb1a-4e49-b0e6-726aeafb43b6","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:34:41.054613Z"},{"created_at":"2023-10-19T16:34:41.054613Z","id":"57b44457-ecb1-48e2-86a5-5d7cf356e438","subnet":"fd63:256c:45f7:d0e7::/64","updated_at":"2023-10-19T16:34:41.054613Z"}],"tags":[],"updated_at":"2023-10-19T16:34:41.054613Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "714" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49cba4f9-82ad-431c-b9cb-8fd22f7728a8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-wait","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627"}' form: {} headers: Content-Type: @@ -50,16 +118,1701 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531035Z","created_at":"2023-10-17T10:00:26.860531035Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:00:26.886378344Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900975539Z","created_at":"2023-10-19T16:34:42.900975539Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:34:42.915672437Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1506" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5e1e1f97-5054-4f88-b31e-3cc230c03a00 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:34:42.915672Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1497" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d333e64b-abe7-4119-a895-e6dce00946ff + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:34:44.442417Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1502" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3eb30ad5-f981-4ac9-b971-decad42401de + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:34:44.442417Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1502" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb41c973-d9cb-4498-906f-e4a54ae0f945 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaFBSRVV5VFhwUk1FNUdiMWhFVkUxNlRWUkJlRTlFUlRKTmVsRXdUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQyWnpDa05OZEVoTlNETm9lRW96Tm0xNlJtVjBlbWhXVlRKNE5WbHhlWGhvVEZsMGVtSkRjR0ZQYUhKRGIwdzVhREpQU2xoMlpraFVUbkk1SzNka1RESjVSM2dLTmxKVEwyWmtVMmQxVm5WWGFtTmhTVkZYVkVaMWFFSlJaMWxFVERGdWVIZFVXbXRvVTBoVGR6RmhORzVIUzBzNWRpdDNObU0zYlVWaGFYWlNZWElyVUFwbmJrWlpjSEU1WkZGNmRXSXJZbGRKY1ROcE1XOVZjblpKYjNKNE5XeGhZV2cxY0VObWRHSllWMFpXTkVNMVRYQlRXa00yVTNCdldFaFdPR3gzVFRWQkNsVjNSSGRzV0c1UVQyNHdTVEJMVFV3MFpFNUtVVmxaVlU5UlEzTmFSVmsyYmpoNGVUSm1iMGwyUVZWbFYwbG5UR2xNV1V0SWJrUXZWRmg2VUhGRFIyWUtlVUk1V1ZkTWEzQnhhREZTT1hrMVRrOXNOWEYwUlVSSk9GRkZNMDlyWm10cEswbFJSVVZCU0VablVYUkVRbGRUTDJ4QlkydFNkVmd2Yms5WFJsVndiQXB4WW1RMEx6QjBZbWRZVEU1TVdYQTBSbEpyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGUkdKb1JXSTBiVnBJYVVGMmVIbHhUSGcyWnpaNE5YcGxUM3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEWkdGT2VGTnBiV05pVDNsdGQza3dUVWczV25CT05XNXZWRll6U2xKT2MxRjFhamROTURkeVEyaFdORVpuYmpSM1V3cE5UMnRxYUhkcFZVcGlLMDU2YVVoMVoxWjRjSGxLT0RCeVNVOUhWMFE0VWxCTmNGSndUMlUxWTBOalZuVlJlbEI0YXpJNVZFVnRUVmt2UWxSc1pGTlhDbUo0YTNkVmJVNDVkV1JaZUcweWNsRjRWbGxtY2toTFRrZ3lhamxJTUdkak9XMHdVbFpMVld3NFRVeHZOM3BMYVhjMGNsSnZjVUk0UVcxUFdqWkRMMElLUm1OR2RUSlJjM1JwU1VOamRqazBVME5YVmpGdGMwSTFUVFF4YVhSdGFFdHJZVVp4VEd0M1IzbG5SemxLSzJZeldEaGFVVEJHUW1oVGVqQTVkak5KY3dwck4yWnVhRlpQUkRaTGNHdHVWa1kyZW1wNldGWk5VbTgxUW5wUk55OVpNVXREVVdsdWNVRkJlU3RFUjB4RFl6TkdkV28xWm5WcE5HaDNkRlZSVW1VekNqaHJhV29yUkN0bWJVeDRiMDUyYUU4M1dFd3JUMDVPYTI5UFFpODJRVmx4T0VWYVRRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly83MGRlMDY0Yi1kZDZkLTQxZDEtYjk5Ny03MDVlMTE1NmRiZjEuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGZ1VqUGRuem5pWE1GajFHN0V3MzdtZXdqY0pyNTZqS0EyVTVvRm5YQ2tMaFB4a0l5Wkk3U2diSQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2606" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a7dbcc8-da27-4cf6-b92c-5e47f2446b9f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:34:44.442417Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1502" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6a22d757-b06f-402e-b44f-1f129d484478 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/pools + method: POST + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399876644Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "629" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8fb817b2-c5dc-4e6e-98ea-a3a7c20e82af + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c3195ec9-f22e-42c5-bc3e-67c3b05815cf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8aaf0f2c-f4a8-41da-bfdc-d9e9916fd710 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:34:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - edfb29b3-0f70-4519-8569-87a805a61a68 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:03 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ba68966-5a95-4188-998e-eb40401df3ee + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dad56560-d1e4-4c98-bc36-b9c7c1c31c21 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8575b4bb-68ec-4e0e-9ded-238fca678af1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1100a991-c969-4ce2-9501-34d4b77ff0c0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:24 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d87e9df-3ffd-41da-9fbf-ac56b47158b5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 447a3d7b-78b8-4881-a77c-8fa6f0bdb311 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f6b16555-6a50-4c59-8352-af8ddac6c2e6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dff82689-e497-486b-88f6-77ad78bc2de2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a2bcbe00-b967-47f3-b2d0-51f616f31c7c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cce69c11-c8d8-4568-8d7a-ef0920f95d6e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 424c859e-aacf-470d-9da3-5133c420725d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:35:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 24649dd8-8c37-4c69-9615-3794bac467a2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:04 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b65d3ffb-d361-410b-afe6-0aed3858df69 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:09 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70575e36-42b8-4147-b540-bf8958e3b9f2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5f470866-b33b-4763-b61f-a99e26486eed + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c9aded35-eee3-409b-832f-64c243a3115d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:24 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9af27c1d-d3de-49fd-b71f-531e9b201c69 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:29 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 85df6903-0123-4f64-a14e-ee5d39bfbe88 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c77b2c30-0ec9-48f0-8674-f5779bedd42e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 517ee171-cc08-4546-a1c5-8a2b61f0e6bb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f8aa8b9-2122-4f6d-8a9c-697dea790d2a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e900305-95c9-413c-a8a7-f6951c8e23d7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:36:55 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb3f68a8-e428-4124-ae91-7b0d676d6ea4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d991a186-0ed2-4e14-8d5b-deed8517329b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:05 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc9a777d-cac7-47ec-a6d5-135b6e333685 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e81622f-9128-42bb-84e9-60dfdef15c7f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fd8c3be6-947c-4e33-9b1f-57c1075a5273 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0c87a88f-374f-48b9-afa0-9f9304331f77 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 939faa57-af1b-407a-b651-3dba6e789181 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:30 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8e36323-4c5d-4079-9d55-22b1fcc37fd7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:35 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b88b212e-e424-4568-b031-b6cc1791aaef + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6688ecb0-5bab-4b81-8c0d-49886e77bd7a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 46ac6493-ddab-423b-9c72-86dfef109e83 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f04b2247-7947-4465-9869-a0f4695d40db + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:37:55 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43025918-39ee-4728-b1f7-2b534d322e19 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:38:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 756f4f52-48c9-4ee8-aa1e-1140d9c96457 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:38:05 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56e5f5b2-a367-4d67-bfaf-23a2042495d2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:38:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 631bae88-507a-4bc8-9a05-dabe6d9fe7a0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:38:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ad5fd4f0-482e-40bd-8f51-bea514a519c4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:38:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 562d005f-3f26-4bf2-be0e-c06b5894166d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:38:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1b770354-1312-42f1-88ca-0b346fa669ed + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1472" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:26 GMT + - Thu, 19 Oct 2023 16:38:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +1822,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88635408-0f39-479b-918a-27509e53f973 + - 382921f3-0580-4f5e-abee-dc184b364dab status: 200 OK code: 200 duration: "" @@ -80,19 +1833,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:00:26.886378Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1463" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:26 GMT + - Thu, 19 Oct 2023 16:38:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,7 +1855,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a87268e-2a55-4a34-aad6-5abc702d2005 + - 54925957-4864-4910-89d4-7b306a46cbee status: 200 OK code: 200 duration: "" @@ -113,19 +1866,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.599759Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1468" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:31 GMT + - Thu, 19 Oct 2023 16:38:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -135,7 +1888,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13891929-087e-4069-ae43-35bba5ba9698 + - 56500118-374f-4c04-92dc-400c75cb14aa status: 200 OK code: 200 duration: "" @@ -146,19 +1899,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.599759Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1468" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Thu, 19 Oct 2023 16:38:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +1921,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd0d23c4-5db5-49c7-8970-de9725dcbd0b + - a0b0f27c-eefd-4f9e-b0d9-b89c59a9a0f2 status: 200 OK code: 200 duration: "" @@ -179,19 +1932,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBvb2xjb25maWd3YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQySkhDa2c1TUZwYVNXaGlhamh4YUZkV2JFNVpLMUpzV2xkdVNIRlZTaTlzY1hvck1IVm9la1puUzNCTWVqa3ZkbTE2VkZoRlFVNW1OekppWVcxNGNEQjRkalFLWWxJM1VFbDViR1ZFYVZOVWFGb3hVV1F5VTFocFdsbEdLMUF2ZEdodE5sVTRORUZMY25kclRWUk5jRXRVUVVJMFIyUTFURWMyYUN0dVRXbFpkVkJ1ZWdwalVEQkVRaTlXTjIxME5IRmtSSFJIUkhvNVkzVkxSak53ZDFrM1NrWTJTV0ZNWlZveFUyc3pjamxPZWpacUwyeDJlRFF3UTBkWGVVaElMMkp5VFhsTkNtaFVabFEyZEdWMWJIRTNSVGg1ZURGdGFVcHRZM1ZrWlN0NlVFdFNRMUJVV1d0MGJUVTFkbWR1SzNwTE9YTmxVR1JoTnk5RU0zcERUbmsyYldWS1VtSUtZMWg2Y2pKb2JqUndXRXQ2UVN0MVMzQkRRM1JSYjFoeFMyMTJUbHAxWVRVME9TOHpOelp2WVRka1JXWnlhRVozV1dVelRYRkxNVk0zVFc0d05rWnlaZ3A1TmxWV2JXNWlVRTl3YVVodU1uUktVRnBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTUhGVk5VeDVVVkU1ZGpWRVpIaE9TV1Y0Y1VKa1NqUmllbE5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDVVhBd2QwZERkbGR1SzFKMU5FTkxVa2hxTUVSWVQyODVhM0JxUW13ek1HSkhjV0ZtYlZKYVQyRlNUR3BWYUhCTlpBcG1kRmc0UnpOM1lXODVaRU5aTm1SdlUwcFZialZoTUZWYWIyOHlaa2NyWVZodE1rTldNVXhrY2tjeGFrNXJjVWxOU2xKUFRrdDZXbVJ2TVVaVWFVTndDbGR6YzNSRVIxQnlRa3hLZFN0aWIzRktRekZaV0hWc1FpODJSalJNTWpWaGMyMXRUVTlUUTI1aGVWUnNSQ3RrY1hWRFZFUm9WbmhsTUZKUFNGZEZTVGtLY21WS2FFVlpORFJTVTBsR05sUkpMMjl4V0VKRFVFOVFTalpQZHpoQmQyRk9RMDVLTVZCS2Jpc3hZakE0Um5kblRrOWlNakJLTDFWNFduSjBhWHB2YmdwaFVWSjRNM1pqT0dkNVJURXdkRkJ0TkdNeFlYaERablV4TUZOcFJtc3paVEpaYjJ0TVIxTTBkbGhyVkZJclZrZzVabGt3WVhCbmVIZHpSbGRTTDFCTkNsWXlUWFZEYm0xVFkwcHRLMjgwWVcwcmVHSk1SMlpoSzBVMGRVdFhPVmd2ZVRSM1VBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4MjQ1Ni0wMjBlLTQyZjYtOTg4MC05Yzg1MzAzZTI3NzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AcG9vbGNvbmZpZ3dhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInBvb2xjb25maWd3YWl0IgogICAgdXNlcjogcG9vbGNvbmZpZ3dhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBwb29sY29uZmlnd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHBvb2xjb25maWd3YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ0FIY1drRUJNT0FoUHEzaXpaeWwzeDQ5WFBjQTFxWU5NcUdlWFJ4cGRVbDNzdzV6c1pKazNnNQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2606" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Thu, 19 Oct 2023 16:38:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,7 +1954,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e60d7e6-19c5-4053-874d-ac9283460623 + - d4a9fb03-3431-4445-9054-da589aa4e472 status: 200 OK code: 200 duration: "" @@ -212,19 +1965,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:00:28.599759Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1468" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Thu, 19 Oct 2023 16:38:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,32 +1987,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ff95280-a8f1-4f9a-80e3-14f9e075683c + - 2f4f45c3-2fd0-4898-8e72-362a0f36d421 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"default","node_type":"gp1_xs","placement_group_id":null,"autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/pools - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c + method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383134759Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Thu, 19 Oct 2023 16:39:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,7 +2020,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28e8d22a-2bf6-4dd3-9686-f1d3adcf4b9f + - 67354190-79bb-458c-8312-a330c2aa5dd9 status: 200 OK code: 200 duration: "" @@ -280,19 +2031,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Thu, 19 Oct 2023 16:39:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +2053,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 791f8920-f9c7-433d-bcbd-8ac05d89a270 + - aac51e42-8cad-4dde-ac6c-1ab8e83b8bd0 status: 200 OK code: 200 duration: "" @@ -313,19 +2064,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:37 GMT + - Thu, 19 Oct 2023 16:39:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -335,7 +2086,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2328852-0165-4046-a164-f247190b750e + - c54ecc45-7e21-4ebe-b3a8-3e85828c2b8f status: 200 OK code: 200 duration: "" @@ -346,19 +2097,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:43 GMT + - Thu, 19 Oct 2023 16:39:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -368,7 +2119,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11ea4733-370d-4232-8b77-8bbb449a0df8 + - a8d9c13b-660f-45cc-8644-2ece92e9d464 status: 200 OK code: 200 duration: "" @@ -379,19 +2130,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:48 GMT + - Thu, 19 Oct 2023 16:39:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +2152,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b703bf3f-902f-4b4f-9e5c-57eef5412ac0 + - c5cf26b3-c169-46c9-9cfd-534599a6fc5b status: 200 OK code: 200 duration: "" @@ -412,19 +2163,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:53 GMT + - Thu, 19 Oct 2023 16:39:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +2185,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c424f441-26a3-4a5b-a674-363f436535ed + - b464c783-b1ce-4893-8155-157f4973d23c status: 200 OK code: 200 duration: "" @@ -445,19 +2196,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:59 GMT + - Thu, 19 Oct 2023 16:39:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +2218,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 930ddfb2-a63a-43a4-b320-d7692e7a97a3 + - 0148e1da-d82c-49bf-854c-5f78d78a4bac status: 200 OK code: 200 duration: "" @@ -478,19 +2229,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:04 GMT + - Thu, 19 Oct 2023 16:39:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +2251,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49e70332-907b-422e-a215-ace71c90bfa2 + - 2636b0f8-a22d-4451-b75c-5cf451a5bf65 status: 200 OK code: 200 duration: "" @@ -511,19 +2262,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:10 GMT + - Thu, 19 Oct 2023 16:39:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +2284,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 486245d4-3a03-4a93-9fd6-5cb9f6324f19 + - a7921348-fb87-42b7-978f-22e0e568948c status: 200 OK code: 200 duration: "" @@ -544,19 +2295,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:15 GMT + - Thu, 19 Oct 2023 16:39:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +2317,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5637c40b-2c2e-4567-9cc6-e0e4f4dfcadc + - 73fba1f8-098a-469b-9e1f-13aebe08d9f5 status: 200 OK code: 200 duration: "" @@ -577,19 +2328,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:20 GMT + - Thu, 19 Oct 2023 16:39:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +2350,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03b142de-9087-48b3-9665-1985e7728bdc + - 5400ffc4-daa0-4234-b72f-ec48cd87d531 status: 200 OK code: 200 duration: "" @@ -610,19 +2361,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:25 GMT + - Thu, 19 Oct 2023 16:39:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,7 +2383,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f566d8df-e97e-43ee-8bc1-3cb95cf54a35 + - af42df51-5a0e-4ed0-acc6-fa8b431a8398 status: 200 OK code: 200 duration: "" @@ -643,19 +2394,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:30 GMT + - Thu, 19 Oct 2023 16:40:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +2416,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed887ac2-5538-4f2a-a79f-f4f0c10b8db4 + - f6bb8315-1f50-4c31-ad14-480431fe2670 status: 200 OK code: 200 duration: "" @@ -676,19 +2427,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:35 GMT + - Thu, 19 Oct 2023 16:40:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,7 +2449,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e050afe-a21d-4a7d-b7b2-48723050e6fd + - 31fc83da-44db-4df0-9c0f-db1e7aeb283a status: 200 OK code: 200 duration: "" @@ -709,19 +2460,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:40 GMT + - Thu, 19 Oct 2023 16:40:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +2482,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71c8016f-f49f-4bb9-8414-2269094e1d76 + - 304051ac-21c1-4f37-8ce3-4a4a83cb369c status: 200 OK code: 200 duration: "" @@ -742,19 +2493,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:46 GMT + - Thu, 19 Oct 2023 16:40:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,7 +2515,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5454656-14c0-4153-b2c4-3b4af26d0880 + - 8f525486-7b72-4a2a-a5ca-07500cae5096 status: 200 OK code: 200 duration: "" @@ -775,19 +2526,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:51 GMT + - Thu, 19 Oct 2023 16:40:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -797,7 +2548,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e887c574-23a5-4a93-a5d8-351f06db7327 + - 832fcd17-0029-4f3b-a8a8-26fc123e0a92 status: 200 OK code: 200 duration: "" @@ -808,19 +2559,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:56 GMT + - Thu, 19 Oct 2023 16:40:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -830,7 +2581,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cd60846-01c4-43ae-832f-d3c2bf37b323 + - d2db45be-1f15-44ed-9016-2cb066bfb675 status: 200 OK code: 200 duration: "" @@ -841,19 +2592,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:01 GMT + - Thu, 19 Oct 2023 16:40:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -863,7 +2614,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d1e0cdc-3aa0-4379-9cb9-68e37da55956 + - 25c7cd3e-9cf3-4eba-9f02-d3e5de6fd9f4 status: 200 OK code: 200 duration: "" @@ -874,19 +2625,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:06 GMT + - Thu, 19 Oct 2023 16:40:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -896,7 +2647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fcc9479-97c5-4e97-9c12-06cd2b6c7326 + - 85850b83-8b3a-4b5c-b14c-166c7cd7e6f9 status: 200 OK code: 200 duration: "" @@ -907,19 +2658,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:11 GMT + - Thu, 19 Oct 2023 16:40:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +2680,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dd20d9f-938a-4ad2-85ca-48d91c826757 + - b79d9fe3-e055-4dda-807d-ad24dda2f76b status: 200 OK code: 200 duration: "" @@ -940,19 +2691,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:16 GMT + - Thu, 19 Oct 2023 16:40:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -962,7 +2713,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fe93e1c-157b-47d8-90c9-d963e36f4850 + - ea8e74b2-2240-45bf-b65a-77bbe60e5d65 status: 200 OK code: 200 duration: "" @@ -973,19 +2724,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:21 GMT + - Thu, 19 Oct 2023 16:40:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -995,7 +2746,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a88a2b3-2426-43ae-a755-56d211698d38 + - e4a6b870-9243-426c-8d82-469ab6c0200c status: 200 OK code: 200 duration: "" @@ -1006,19 +2757,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:26 GMT + - Thu, 19 Oct 2023 16:40:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1028,7 +2779,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7116e7fa-1a01-4869-b179-f46dab4ee82e + - 95ebb1e6-c437-464e-abcd-763fc4136655 status: 200 OK code: 200 duration: "" @@ -1039,19 +2790,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:31 GMT + - Thu, 19 Oct 2023 16:41:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1061,7 +2812,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 653aa72e-08c2-43cb-b373-09c5b5b114e7 + - 488ed35d-46e3-424f-b4ff-32710ea1dfbb status: 200 OK code: 200 duration: "" @@ -1072,19 +2823,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:36 GMT + - Thu, 19 Oct 2023 16:41:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1094,7 +2845,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4bfe111-49be-4735-9555-a45e1677519c + - 7e177e0a-c7fe-46fb-90d0-9b7fb5df30b9 status: 200 OK code: 200 duration: "" @@ -1105,19 +2856,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:34:48.399877Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:41 GMT + - Thu, 19 Oct 2023 16:41:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,7 +2878,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb949e6e-b193-473f-b265-f355acea4f60 + - a153f07e-ecdd-490e-b869-722ea0e26ed1 status: 200 OK code: 200 duration: "" @@ -1138,19 +2889,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:46 GMT + - Thu, 19 Oct 2023 16:41:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +2911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7e8a7cb-7314-4d4b-a529-c00a5011f358 + - f5e4c6a0-8e88-4409-a471-562792b9ada5 status: 200 OK code: 200 duration: "" @@ -1171,19 +2922,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "619" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:51 GMT + - Thu, 19 Oct 2023 16:41:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1193,7 +2944,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4534e142-0408-4a56-a8d2-ecfae59597b5 + - ae340d92-43ca-430a-bc92-51cf4f751421 status: 200 OK code: 200 duration: "" @@ -1204,19 +2955,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:56 GMT + - Thu, 19 Oct 2023 16:41:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1226,7 +2977,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a118e55-6863-4dd8-b0d8-9160d6b59617 + - b574cab1-fc14-4263-b211-02c698aae32c status: 200 OK code: 200 duration: "" @@ -1237,19 +2988,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=34a36b69-f6e4-4279-8f74-c49a6213083c&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:36:27.777812Z","error_message":null,"id":"b0a9dc5d-be0e-41bf-b5ce-e13680526495","name":"scw-test-pool-wait-test-pool-wait-b0a9dc5dbe0e","pool_id":"34a36b69-f6e4-4279-8f74-c49a6213083c","provider_id":"scaleway://instance/fr-par-1/456dcdc2-0d49-445e-ba9c-5a4039a43c73","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:41:12.880621Z"}],"total_count":1}' headers: Content-Length: - - "619" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:01 GMT + - Thu, 19 Oct 2023 16:41:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1259,7 +3010,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d69bf49f-69be-4001-a76d-c158552e6350 + - e8287b88-a34e-403b-b6be-179ccf435c6c status: 200 OK code: 200 duration: "" @@ -1270,19 +3021,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "619" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:07 GMT + - Thu, 19 Oct 2023 16:41:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1292,7 +3043,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2452dc85-d609-4290-ad56-8d205dc6fd03 + - b4b515eb-4f26-4b0d-8159-66a02e484fb0 status: 200 OK code: 200 duration: "" @@ -1303,19 +3054,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:12 GMT + - Thu, 19 Oct 2023 16:41:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1325,7 +3076,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 381d7727-928d-436c-af24-9382617202ed + - 9de97d78-a10c-406a-ad42-e56bbc281a8e status: 200 OK code: 200 duration: "" @@ -1336,19 +3087,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/882a0149-d4f0-470c-8a36-650eb9f9c627 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-19T16:34:41.054613Z","dhcp_enabled":true,"id":"882a0149-d4f0-470c-8a36-650eb9f9c627","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:34:41.054613Z","id":"29e823e2-bb1a-4e49-b0e6-726aeafb43b6","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:34:41.054613Z"},{"created_at":"2023-10-19T16:34:41.054613Z","id":"57b44457-ecb1-48e2-86a5-5d7cf356e438","subnet":"fd63:256c:45f7:d0e7::/64","updated_at":"2023-10-19T16:34:41.054613Z"}],"tags":[],"updated_at":"2023-10-19T16:34:41.054613Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "619" + - "714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:17 GMT + - Thu, 19 Oct 2023 16:41:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1358,7 +3109,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 739d1145-54b8-468d-a6fa-93ebc48bdb00 + - bc1ad376-36a7-4e98-9303-ba3e3f452256 status: 200 OK code: 200 duration: "" @@ -1369,19 +3120,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "619" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:22 GMT + - Thu, 19 Oct 2023 16:41:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1391,7 +3142,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f0224ea-8b2d-4ed3-9bfe-8beedf10b3c0 + - e3eda050-c747-42e9-af76-16fac5f690fb status: 200 OK code: 200 duration: "" @@ -1402,19 +3153,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/kubeconfig method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaFBSRVV5VFhwUk1FNUdiMWhFVkUxNlRWUkJlRTlFUlRKTmVsRXdUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQyWnpDa05OZEVoTlNETm9lRW96Tm0xNlJtVjBlbWhXVlRKNE5WbHhlWGhvVEZsMGVtSkRjR0ZQYUhKRGIwdzVhREpQU2xoMlpraFVUbkk1SzNka1RESjVSM2dLTmxKVEwyWmtVMmQxVm5WWGFtTmhTVkZYVkVaMWFFSlJaMWxFVERGdWVIZFVXbXRvVTBoVGR6RmhORzVIUzBzNWRpdDNObU0zYlVWaGFYWlNZWElyVUFwbmJrWlpjSEU1WkZGNmRXSXJZbGRKY1ROcE1XOVZjblpKYjNKNE5XeGhZV2cxY0VObWRHSllWMFpXTkVNMVRYQlRXa00yVTNCdldFaFdPR3gzVFRWQkNsVjNSSGRzV0c1UVQyNHdTVEJMVFV3MFpFNUtVVmxaVlU5UlEzTmFSVmsyYmpoNGVUSm1iMGwyUVZWbFYwbG5UR2xNV1V0SWJrUXZWRmg2VUhGRFIyWUtlVUk1V1ZkTWEzQnhhREZTT1hrMVRrOXNOWEYwUlVSSk9GRkZNMDlyWm10cEswbFJSVVZCU0VablVYUkVRbGRUTDJ4QlkydFNkVmd2Yms5WFJsVndiQXB4WW1RMEx6QjBZbWRZVEU1TVdYQTBSbEpyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGUkdKb1JXSTBiVnBJYVVGMmVIbHhUSGcyWnpaNE5YcGxUM3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEWkdGT2VGTnBiV05pVDNsdGQza3dUVWczV25CT05XNXZWRll6U2xKT2MxRjFhamROTURkeVEyaFdORVpuYmpSM1V3cE5UMnRxYUhkcFZVcGlLMDU2YVVoMVoxWjRjSGxLT0RCeVNVOUhWMFE0VWxCTmNGSndUMlUxWTBOalZuVlJlbEI0YXpJNVZFVnRUVmt2UWxSc1pGTlhDbUo0YTNkVmJVNDVkV1JaZUcweWNsRjRWbGxtY2toTFRrZ3lhamxJTUdkak9XMHdVbFpMVld3NFRVeHZOM3BMYVhjMGNsSnZjVUk0UVcxUFdqWkRMMElLUm1OR2RUSlJjM1JwU1VOamRqazBVME5YVmpGdGMwSTFUVFF4YVhSdGFFdHJZVVp4VEd0M1IzbG5SemxLSzJZeldEaGFVVEJHUW1oVGVqQTVkak5KY3dwck4yWnVhRlpQUkRaTGNHdHVWa1kyZW1wNldGWk5VbTgxUW5wUk55OVpNVXREVVdsdWNVRkJlU3RFUjB4RFl6TkdkV28xWm5WcE5HaDNkRlZSVW1VekNqaHJhV29yUkN0bWJVeDRiMDUyYUU4M1dFd3JUMDVPYTI5UFFpODJRVmx4T0VWYVRRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly83MGRlMDY0Yi1kZDZkLTQxZDEtYjk5Ny03MDVlMTE1NmRiZjEuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGZ1VqUGRuem5pWE1GajFHN0V3MzdtZXdqY0pyNTZqS0EyVTVvRm5YQ2tMaFB4a0l5Wkk3U2diSQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "619" + - "2606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:27 GMT + - Thu, 19 Oct 2023 16:41:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1424,7 +3175,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7a2169f-5dd5-4230-8a57-e228d2436696 + - a44efa2f-788a-4bb2-a645-0c454ec967dd status: 200 OK code: 200 duration: "" @@ -1435,19 +3186,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:33 GMT + - Thu, 19 Oct 2023 16:41:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1457,7 +3208,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbdcb278-d14d-4be3-8549-d66f61086310 + - fa0ba9aa-d1f6-48b8-8187-812a1304c192 status: 200 OK code: 200 duration: "" @@ -1468,19 +3219,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=34a36b69-f6e4-4279-8f74-c49a6213083c&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:36:27.777812Z","error_message":null,"id":"b0a9dc5d-be0e-41bf-b5ce-e13680526495","name":"scw-test-pool-wait-test-pool-wait-b0a9dc5dbe0e","pool_id":"34a36b69-f6e4-4279-8f74-c49a6213083c","provider_id":"scaleway://instance/fr-par-1/456dcdc2-0d49-445e-ba9c-5a4039a43c73","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:41:12.880621Z"}],"total_count":1}' headers: Content-Length: - - "619" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:38 GMT + - Thu, 19 Oct 2023 16:41:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1490,7 +3241,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f344b76-824b-4ac2-b03d-5f73b63a0604 + - 25a16cbd-4333-43dc-b099-0a2ac7018934 status: 200 OK code: 200 duration: "" @@ -1501,19 +3252,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/882a0149-d4f0-470c-8a36-650eb9f9c627 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-19T16:34:41.054613Z","dhcp_enabled":true,"id":"882a0149-d4f0-470c-8a36-650eb9f9c627","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:34:41.054613Z","id":"29e823e2-bb1a-4e49-b0e6-726aeafb43b6","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:34:41.054613Z"},{"created_at":"2023-10-19T16:34:41.054613Z","id":"57b44457-ecb1-48e2-86a5-5d7cf356e438","subnet":"fd63:256c:45f7:d0e7::/64","updated_at":"2023-10-19T16:34:41.054613Z"}],"tags":[],"updated_at":"2023-10-19T16:34:41.054613Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "619" + - "714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:43 GMT + - Thu, 19 Oct 2023 16:41:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1523,7 +3274,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a728ef1d-bb6a-4b88-97cc-b7413acd815d + - c8eb843a-9292-4916-9b63-c4cfc37434a0 status: 200 OK code: 200 duration: "" @@ -1534,19 +3285,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "619" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:48 GMT + - Thu, 19 Oct 2023 16:41:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1556,7 +3307,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68657511-e32e-484e-81b0-fb0727379c95 + - 3254b51b-74e9-4412-9b2d-05ffbd6bba94 status: 200 OK code: 200 duration: "" @@ -1567,19 +3318,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/kubeconfig method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaFBSRVV5VFhwUk1FNUdiMWhFVkUxNlRWUkJlRTlFUlRKTmVsRXdUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQyWnpDa05OZEVoTlNETm9lRW96Tm0xNlJtVjBlbWhXVlRKNE5WbHhlWGhvVEZsMGVtSkRjR0ZQYUhKRGIwdzVhREpQU2xoMlpraFVUbkk1SzNka1RESjVSM2dLTmxKVEwyWmtVMmQxVm5WWGFtTmhTVkZYVkVaMWFFSlJaMWxFVERGdWVIZFVXbXRvVTBoVGR6RmhORzVIUzBzNWRpdDNObU0zYlVWaGFYWlNZWElyVUFwbmJrWlpjSEU1WkZGNmRXSXJZbGRKY1ROcE1XOVZjblpKYjNKNE5XeGhZV2cxY0VObWRHSllWMFpXTkVNMVRYQlRXa00yVTNCdldFaFdPR3gzVFRWQkNsVjNSSGRzV0c1UVQyNHdTVEJMVFV3MFpFNUtVVmxaVlU5UlEzTmFSVmsyYmpoNGVUSm1iMGwyUVZWbFYwbG5UR2xNV1V0SWJrUXZWRmg2VUhGRFIyWUtlVUk1V1ZkTWEzQnhhREZTT1hrMVRrOXNOWEYwUlVSSk9GRkZNMDlyWm10cEswbFJSVVZCU0VablVYUkVRbGRUTDJ4QlkydFNkVmd2Yms5WFJsVndiQXB4WW1RMEx6QjBZbWRZVEU1TVdYQTBSbEpyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGUkdKb1JXSTBiVnBJYVVGMmVIbHhUSGcyWnpaNE5YcGxUM3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEWkdGT2VGTnBiV05pVDNsdGQza3dUVWczV25CT05XNXZWRll6U2xKT2MxRjFhamROTURkeVEyaFdORVpuYmpSM1V3cE5UMnRxYUhkcFZVcGlLMDU2YVVoMVoxWjRjSGxLT0RCeVNVOUhWMFE0VWxCTmNGSndUMlUxWTBOalZuVlJlbEI0YXpJNVZFVnRUVmt2UWxSc1pGTlhDbUo0YTNkVmJVNDVkV1JaZUcweWNsRjRWbGxtY2toTFRrZ3lhamxJTUdkak9XMHdVbFpMVld3NFRVeHZOM3BMYVhjMGNsSnZjVUk0UVcxUFdqWkRMMElLUm1OR2RUSlJjM1JwU1VOamRqazBVME5YVmpGdGMwSTFUVFF4YVhSdGFFdHJZVVp4VEd0M1IzbG5SemxLSzJZeldEaGFVVEJHUW1oVGVqQTVkak5KY3dwck4yWnVhRlpQUkRaTGNHdHVWa1kyZW1wNldGWk5VbTgxUW5wUk55OVpNVXREVVdsdWNVRkJlU3RFUjB4RFl6TkdkV28xWm5WcE5HaDNkRlZSVW1VekNqaHJhV29yUkN0bWJVeDRiMDUyYUU4M1dFd3JUMDVPYTI5UFFpODJRVmx4T0VWYVRRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly83MGRlMDY0Yi1kZDZkLTQxZDEtYjk5Ny03MDVlMTE1NmRiZjEuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGZ1VqUGRuem5pWE1GajFHN0V3MzdtZXdqY0pyNTZqS0EyVTVvRm5YQ2tMaFB4a0l5Wkk3U2diSQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "619" + - "2606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:53 GMT + - Thu, 19 Oct 2023 16:41:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1589,7 +3340,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d32d217-31a3-4b3c-9779-8240c18f869d + - a4b2c699-fcba-4ef5-ac77-b3a9f5f9bde1 status: 200 OK code: 200 duration: "" @@ -1600,19 +3351,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:58 GMT + - Thu, 19 Oct 2023 16:41:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1622,7 +3373,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b574ac7-2445-451b-92bd-a8e43f33d5af + - b17425e9-9464-4549-991a-6f0e2272882e status: 200 OK code: 200 duration: "" @@ -1633,19 +3384,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=34a36b69-f6e4-4279-8f74-c49a6213083c&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:36:27.777812Z","error_message":null,"id":"b0a9dc5d-be0e-41bf-b5ce-e13680526495","name":"scw-test-pool-wait-test-pool-wait-b0a9dc5dbe0e","pool_id":"34a36b69-f6e4-4279-8f74-c49a6213083c","provider_id":"scaleway://instance/fr-par-1/456dcdc2-0d49-445e-ba9c-5a4039a43c73","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:41:12.880621Z"}],"total_count":1}' headers: Content-Length: - - "619" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:03 GMT + - Thu, 19 Oct 2023 16:41:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1655,7 +3406,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 063f2970-2abb-43fd-953a-c539aa485556 + - 55bf322b-4d91-4b9e-9a09-e66442e3f829 status: 200 OK code: 200 duration: "" @@ -1666,19 +3417,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "619" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:08 GMT + - Thu, 19 Oct 2023 16:41:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1688,30 +3439,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7f7e2c0-8419-45fa-9749-fd9015b7c899 + - add4de13-9718-4e51-92da-a2a1018505bf status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 - method: GET + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/pools + method: POST response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095406Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "631" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:13 GMT + - Thu, 19 Oct 2023 16:41:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1721,7 +3474,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f945e52f-e01e-40d6-a009-44c8dd4d8d8b + - fa63f33b-3f95-456a-b29d-818b7733c536 status: 200 OK code: 200 duration: "" @@ -1732,19 +3485,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:18 GMT + - Thu, 19 Oct 2023 16:41:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1754,7 +3507,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50fdb40d-609a-42fd-a262-e7d63e1fe171 + - a892360c-1d77-4b0b-ab1b-13a7e9f7f993 status: 200 OK code: 200 duration: "" @@ -1765,19 +3518,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:23 GMT + - Thu, 19 Oct 2023 16:41:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1787,7 +3540,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a088ddf2-8f7f-4f73-9ffc-2142f93e908b + - 86d9bac6-24bb-4af1-81a4-ed4ef337ed00 status: 200 OK code: 200 duration: "" @@ -1798,19 +3551,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:28 GMT + - Thu, 19 Oct 2023 16:41:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1820,7 +3573,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79c97c2b-f23a-4fd1-bce5-7c9aea6ec419 + - 7ff4f55e-f020-481e-903a-ba1bc0d980ae status: 200 OK code: 200 duration: "" @@ -1831,19 +3584,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:33 GMT + - Thu, 19 Oct 2023 16:41:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1853,7 +3606,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79955370-9f8a-4af6-832a-7b41527e92f2 + - b3c44ff4-3a97-4f81-972c-2478fb861d44 status: 200 OK code: 200 duration: "" @@ -1864,19 +3617,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:38 GMT + - Thu, 19 Oct 2023 16:41:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1886,7 +3639,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 218707e0-c0e3-41a4-8e77-a2c6290a0878 + - 12ad30ce-53bf-4145-8ae2-1ceaa5ca049f status: 200 OK code: 200 duration: "" @@ -1897,19 +3650,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:44 GMT + - Thu, 19 Oct 2023 16:41:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1919,7 +3672,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f057642-2642-4d77-9296-ace2fb64daae + - 922536dd-5acb-4d79-acd9-3c83da20d89f status: 200 OK code: 200 duration: "" @@ -1930,19 +3683,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:49 GMT + - Thu, 19 Oct 2023 16:41:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1952,7 +3705,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c077c7ab-d5d4-4d6d-be40-592fc81d0dca + - cc7efd92-bdb6-452e-97f8-db5742826f5e status: 200 OK code: 200 duration: "" @@ -1963,19 +3716,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:54 GMT + - Thu, 19 Oct 2023 16:41:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1985,7 +3738,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6876e00-a4f7-417b-9663-ead84bbbe1da + - 6ad96a3f-47b6-4763-9a46-fca2147537dc status: 200 OK code: 200 duration: "" @@ -1996,19 +3749,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:59 GMT + - Thu, 19 Oct 2023 16:42:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2018,7 +3771,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a93d1d8-fa62-4f0d-9de5-10c755240fb7 + - 1264768b-87ca-4503-8620-b9b48ef27e32 status: 200 OK code: 200 duration: "" @@ -2029,19 +3782,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:04 GMT + - Thu, 19 Oct 2023 16:42:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2051,7 +3804,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f39a9ed-87fe-453f-ba8a-1bc6bb3ccba7 + - e9998e53-7213-4e0c-b6eb-5d9282dba458 status: 200 OK code: 200 duration: "" @@ -2062,19 +3815,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:09 GMT + - Thu, 19 Oct 2023 16:42:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2084,7 +3837,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69639090-058a-4648-a316-3a42ec0bab23 + - d57b4938-cb7f-4bbc-bfce-88ca650918e1 status: 200 OK code: 200 duration: "" @@ -2095,19 +3848,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:14 GMT + - Thu, 19 Oct 2023 16:42:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2117,7 +3870,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12ceb0c6-e75f-484c-afad-9be3bde7d1b3 + - 136d1356-5a6a-4c60-b8c7-5f1d776defb3 status: 200 OK code: 200 duration: "" @@ -2128,19 +3881,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:19 GMT + - Thu, 19 Oct 2023 16:42:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2150,7 +3903,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca86eddc-91a0-4b94-a1d8-a029303e827c + - 4177e9ac-e98d-4f0f-8f4c-dd78a43946ef status: 200 OK code: 200 duration: "" @@ -2161,19 +3914,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:24 GMT + - Thu, 19 Oct 2023 16:42:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2183,7 +3936,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e7f4200-182c-48b3-848b-d53072aa24a6 + - 72e59998-97bc-446e-b246-8b62a364d52d status: 200 OK code: 200 duration: "" @@ -2194,19 +3947,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:29 GMT + - Thu, 19 Oct 2023 16:42:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2216,7 +3969,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40595018-93da-465f-ba13-8dcd557a80eb + - 22219061-9fb0-4001-8b19-35802b414bd7 status: 200 OK code: 200 duration: "" @@ -2227,19 +3980,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:34 GMT + - Thu, 19 Oct 2023 16:42:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2249,7 +4002,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53271168-49c4-46a7-8a5d-e47883a7a576 + - 6b3d04b2-5208-4d4d-95cf-1652a154e977 status: 200 OK code: 200 duration: "" @@ -2260,19 +4013,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:39 GMT + - Thu, 19 Oct 2023 16:42:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2282,7 +4035,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdccf0f3-1cf8-44b4-a43a-151397cb596c + - 960c846f-29f4-4242-b83d-f3d24970e079 status: 200 OK code: 200 duration: "" @@ -2293,19 +4046,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:45 GMT + - Thu, 19 Oct 2023 16:42:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2315,7 +4068,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1c28956-1e23-4016-b097-b351b2a158f3 + - 84a03986-435d-46e0-8b8c-574d69df7e04 status: 200 OK code: 200 duration: "" @@ -2326,19 +4079,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:50 GMT + - Thu, 19 Oct 2023 16:42:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2348,7 +4101,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efde2edb-9d4d-41aa-a5ad-a51f2719a3ab + - 22c218d0-a530-49e2-a84c-e919db79976d status: 200 OK code: 200 duration: "" @@ -2359,19 +4112,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:55 GMT + - Thu, 19 Oct 2023 16:42:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2381,7 +4134,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98985d6f-07a4-4e5a-bbd6-930e3afc24d3 + - 95f0d30d-4852-468e-a0cb-b6e4810c2fd8 status: 200 OK code: 200 duration: "" @@ -2392,19 +4145,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:00 GMT + - Thu, 19 Oct 2023 16:43:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2414,7 +4167,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f3c5d88-7377-493c-85d3-eb3ccb04b46e + - 79041529-99e9-40af-841e-da0a6d83ecc9 status: 200 OK code: 200 duration: "" @@ -2425,19 +4178,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:00:32.383135Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:05 GMT + - Thu, 19 Oct 2023 16:43:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2447,7 +4200,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9fc0d5d-5594-4ff5-bec6-ebdd1d4b08af + - 294ec510-4ba2-4795-b6a8-0838a1e7a84e status: 200 OK code: 200 duration: "" @@ -2458,19 +4211,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:10 GMT + - Thu, 19 Oct 2023 16:43:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2480,7 +4233,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2eb3e464-ac64-48fd-a873-b5edbb2f3a56 + - fbc9d623-ced5-4e63-8611-52d4258f399e status: 200 OK code: 200 duration: "" @@ -2491,19 +4244,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1460" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:10 GMT + - Thu, 19 Oct 2023 16:43:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2513,7 +4266,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cf57dc6-53b3-420f-83e4-7d63e0aef456 + - 2a8fd688-5b80-4420-acc5-294318651ae1 status: 200 OK code: 200 duration: "" @@ -2524,19 +4277,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:10 GMT + - Thu, 19 Oct 2023 16:43:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2546,7 +4299,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11ff89e8-ad7d-4e07-b42c-815c1d1321e5 + - e52f1f28-2868-4a90-b4f3-1b630a1f6385 status: 200 OK code: 200 duration: "" @@ -2557,19 +4310,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=371a76d7-faca-46d8-a698-c079a89d2d59&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:32.142675Z","error_message":null,"id":"6f99bb99-10e8-487f-b527-eaf526aaa91d","name":"scw-poolconfigwait-default-6f99bb9910e8487fb52","pool_id":"371a76d7-faca-46d8-a698-c079a89d2d59","provider_id":"scaleway://instance/fr-par-1/56c93cbb-e9a7-445c-a706-2586b8775d92","public_ip_v4":"163.172.131.97","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:09.357040Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:10 GMT + - Thu, 19 Oct 2023 16:43:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2579,7 +4332,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48405459-ae0c-410e-84ef-18db6b859a64 + - 0888e736-aff6-4a8e-825f-135614a555d0 status: 200 OK code: 200 duration: "" @@ -2590,19 +4343,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1460" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:11 GMT + - Thu, 19 Oct 2023 16:43:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2612,7 +4365,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8028b8d-623a-48f3-9020-cdd2f8b7ed09 + - f1dc25ad-3662-4324-a382-230c6529a5d5 status: 200 OK code: 200 duration: "" @@ -2623,19 +4376,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:11 GMT + - Thu, 19 Oct 2023 16:43:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2645,7 +4398,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f0e8a0a-9fab-4205-9214-93473141e618 + - 357f2184-0e7d-4a83-954a-132a92165667 status: 200 OK code: 200 duration: "" @@ -2656,19 +4409,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1460" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:12 GMT + - Thu, 19 Oct 2023 16:43:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2678,7 +4431,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a677511-6b79-47d8-b9e3-b470ef06b793 + - 97d9b9a9-8220-403a-b615-ace19e5609bf status: 200 OK code: 200 duration: "" @@ -2689,19 +4442,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBvb2xjb25maWd3YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQySkhDa2c1TUZwYVNXaGlhamh4YUZkV2JFNVpLMUpzV2xkdVNIRlZTaTlzY1hvck1IVm9la1puUzNCTWVqa3ZkbTE2VkZoRlFVNW1OekppWVcxNGNEQjRkalFLWWxJM1VFbDViR1ZFYVZOVWFGb3hVV1F5VTFocFdsbEdLMUF2ZEdodE5sVTRORUZMY25kclRWUk5jRXRVUVVJMFIyUTFURWMyYUN0dVRXbFpkVkJ1ZWdwalVEQkVRaTlXTjIxME5IRmtSSFJIUkhvNVkzVkxSak53ZDFrM1NrWTJTV0ZNWlZveFUyc3pjamxPZWpacUwyeDJlRFF3UTBkWGVVaElMMkp5VFhsTkNtaFVabFEyZEdWMWJIRTNSVGg1ZURGdGFVcHRZM1ZrWlN0NlVFdFNRMUJVV1d0MGJUVTFkbWR1SzNwTE9YTmxVR1JoTnk5RU0zcERUbmsyYldWS1VtSUtZMWg2Y2pKb2JqUndXRXQ2UVN0MVMzQkRRM1JSYjFoeFMyMTJUbHAxWVRVME9TOHpOelp2WVRka1JXWnlhRVozV1dVelRYRkxNVk0zVFc0d05rWnlaZ3A1TmxWV2JXNWlVRTl3YVVodU1uUktVRnBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTUhGVk5VeDVVVkU1ZGpWRVpIaE9TV1Y0Y1VKa1NqUmllbE5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDVVhBd2QwZERkbGR1SzFKMU5FTkxVa2hxTUVSWVQyODVhM0JxUW13ek1HSkhjV0ZtYlZKYVQyRlNUR3BWYUhCTlpBcG1kRmc0UnpOM1lXODVaRU5aTm1SdlUwcFZialZoTUZWYWIyOHlaa2NyWVZodE1rTldNVXhrY2tjeGFrNXJjVWxOU2xKUFRrdDZXbVJ2TVVaVWFVTndDbGR6YzNSRVIxQnlRa3hLZFN0aWIzRktRekZaV0hWc1FpODJSalJNTWpWaGMyMXRUVTlUUTI1aGVWUnNSQ3RrY1hWRFZFUm9WbmhsTUZKUFNGZEZTVGtLY21WS2FFVlpORFJTVTBsR05sUkpMMjl4V0VKRFVFOVFTalpQZHpoQmQyRk9RMDVLTVZCS2Jpc3hZakE0Um5kblRrOWlNakJLTDFWNFduSjBhWHB2YmdwaFVWSjRNM1pqT0dkNVJURXdkRkJ0TkdNeFlYaERablV4TUZOcFJtc3paVEpaYjJ0TVIxTTBkbGhyVkZJclZrZzVabGt3WVhCbmVIZHpSbGRTTDFCTkNsWXlUWFZEYm0xVFkwcHRLMjgwWVcwcmVHSk1SMlpoSzBVMGRVdFhPVmd2ZVRSM1VBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4MjQ1Ni0wMjBlLTQyZjYtOTg4MC05Yzg1MzAzZTI3NzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AcG9vbGNvbmZpZ3dhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInBvb2xjb25maWd3YWl0IgogICAgdXNlcjogcG9vbGNvbmZpZ3dhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBwb29sY29uZmlnd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHBvb2xjb25maWd3YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ0FIY1drRUJNT0FoUHEzaXpaeWwzeDQ5WFBjQTFxWU5NcUdlWFJ4cGRVbDNzdzV6c1pKazNnNQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2606" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:12 GMT + - Thu, 19 Oct 2023 16:43:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2711,7 +4464,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e0b161e-695b-4915-9d14-83d1d02251f4 + - 999c2803-d580-48c3-85fd-6db2c792644d status: 200 OK code: 200 duration: "" @@ -2722,19 +4475,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:12 GMT + - Thu, 19 Oct 2023 16:43:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2744,7 +4497,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caddc2f7-a4d4-4cca-8443-8c42d9dfe517 + - 2525330d-a6de-462f-8e31-f49d26a2708b status: 200 OK code: 200 duration: "" @@ -2755,19 +4508,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=371a76d7-faca-46d8-a698-c079a89d2d59&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:32.142675Z","error_message":null,"id":"6f99bb99-10e8-487f-b527-eaf526aaa91d","name":"scw-poolconfigwait-default-6f99bb9910e8487fb52","pool_id":"371a76d7-faca-46d8-a698-c079a89d2d59","provider_id":"scaleway://instance/fr-par-1/56c93cbb-e9a7-445c-a706-2586b8775d92","public_ip_v4":"163.172.131.97","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:09.357040Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:12 GMT + - Thu, 19 Oct 2023 16:43:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2777,7 +4530,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5714903-fd84-4ea0-a321-7c655508bffa + - 1df5b574-c65b-4b77-bf3c-d7ad945acc98 status: 200 OK code: 200 duration: "" @@ -2788,19 +4541,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1460" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:13 GMT + - Thu, 19 Oct 2023 16:44:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2810,7 +4563,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 009307f1-f57a-475d-a2c2-1f7e619b07cd + - eb78c502-c019-49dd-81a7-b47fa42e3e72 status: 200 OK code: 200 duration: "" @@ -2821,19 +4574,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBvb2xjb25maWd3YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQySkhDa2c1TUZwYVNXaGlhamh4YUZkV2JFNVpLMUpzV2xkdVNIRlZTaTlzY1hvck1IVm9la1puUzNCTWVqa3ZkbTE2VkZoRlFVNW1OekppWVcxNGNEQjRkalFLWWxJM1VFbDViR1ZFYVZOVWFGb3hVV1F5VTFocFdsbEdLMUF2ZEdodE5sVTRORUZMY25kclRWUk5jRXRVUVVJMFIyUTFURWMyYUN0dVRXbFpkVkJ1ZWdwalVEQkVRaTlXTjIxME5IRmtSSFJIUkhvNVkzVkxSak53ZDFrM1NrWTJTV0ZNWlZveFUyc3pjamxPZWpacUwyeDJlRFF3UTBkWGVVaElMMkp5VFhsTkNtaFVabFEyZEdWMWJIRTNSVGg1ZURGdGFVcHRZM1ZrWlN0NlVFdFNRMUJVV1d0MGJUVTFkbWR1SzNwTE9YTmxVR1JoTnk5RU0zcERUbmsyYldWS1VtSUtZMWg2Y2pKb2JqUndXRXQ2UVN0MVMzQkRRM1JSYjFoeFMyMTJUbHAxWVRVME9TOHpOelp2WVRka1JXWnlhRVozV1dVelRYRkxNVk0zVFc0d05rWnlaZ3A1TmxWV2JXNWlVRTl3YVVodU1uUktVRnBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTUhGVk5VeDVVVkU1ZGpWRVpIaE9TV1Y0Y1VKa1NqUmllbE5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDVVhBd2QwZERkbGR1SzFKMU5FTkxVa2hxTUVSWVQyODVhM0JxUW13ek1HSkhjV0ZtYlZKYVQyRlNUR3BWYUhCTlpBcG1kRmc0UnpOM1lXODVaRU5aTm1SdlUwcFZialZoTUZWYWIyOHlaa2NyWVZodE1rTldNVXhrY2tjeGFrNXJjVWxOU2xKUFRrdDZXbVJ2TVVaVWFVTndDbGR6YzNSRVIxQnlRa3hLZFN0aWIzRktRekZaV0hWc1FpODJSalJNTWpWaGMyMXRUVTlUUTI1aGVWUnNSQ3RrY1hWRFZFUm9WbmhsTUZKUFNGZEZTVGtLY21WS2FFVlpORFJTVTBsR05sUkpMMjl4V0VKRFVFOVFTalpQZHpoQmQyRk9RMDVLTVZCS2Jpc3hZakE0Um5kblRrOWlNakJLTDFWNFduSjBhWHB2YmdwaFVWSjRNM1pqT0dkNVJURXdkRkJ0TkdNeFlYaERablV4TUZOcFJtc3paVEpaYjJ0TVIxTTBkbGhyVkZJclZrZzVabGt3WVhCbmVIZHpSbGRTTDFCTkNsWXlUWFZEYm0xVFkwcHRLMjgwWVcwcmVHSk1SMlpoSzBVMGRVdFhPVmd2ZVRSM1VBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4MjQ1Ni0wMjBlLTQyZjYtOTg4MC05Yzg1MzAzZTI3NzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AcG9vbGNvbmZpZ3dhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInBvb2xjb25maWd3YWl0IgogICAgdXNlcjogcG9vbGNvbmZpZ3dhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBwb29sY29uZmlnd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHBvb2xjb25maWd3YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ0FIY1drRUJNT0FoUHEzaXpaeWwzeDQ5WFBjQTFxWU5NcUdlWFJ4cGRVbDNzdzV6c1pKazNnNQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2606" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:14 GMT + - Thu, 19 Oct 2023 16:44:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2843,7 +4596,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de5d638f-f4e5-4fd9-861f-fd7bbff2e55e + - 3af131ec-821a-4b50-81c7-02ba885e3954 status: 200 OK code: 200 duration: "" @@ -2854,19 +4607,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:15 GMT + - Thu, 19 Oct 2023 16:44:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2876,7 +4629,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f2a1907-686f-4ea1-8cd1-0f80eff47c8a + - 469557e0-bbe0-4eb2-ace2-3213c55808b2 status: 200 OK code: 200 duration: "" @@ -2887,19 +4640,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=371a76d7-faca-46d8-a698-c079a89d2d59&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:32.142675Z","error_message":null,"id":"6f99bb99-10e8-487f-b527-eaf526aaa91d","name":"scw-poolconfigwait-default-6f99bb9910e8487fb52","pool_id":"371a76d7-faca-46d8-a698-c079a89d2d59","provider_id":"scaleway://instance/fr-par-1/56c93cbb-e9a7-445c-a706-2586b8775d92","public_ip_v4":"163.172.131.97","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:06:09.357040Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:15 GMT + - Thu, 19 Oct 2023 16:44:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2909,7 +4662,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e74c2a4-102c-446e-90ca-99ba78965ac3 + - dc11ee13-1ed1-403c-9c22-58e6c962352d status: 200 OK code: 200 duration: "" @@ -2920,19 +4673,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1460" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:15 GMT + - Thu, 19 Oct 2023 16:44:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2942,32 +4695,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0919d369-07a3-47a3-8ed7-98765f9b0687 + - c1618e40-4e2b-4af8-b226-1376452b567a status: 200 OK code: 200 duration: "" - request: - body: '{"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"autoscaling":false,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":false,"tags":null,"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-1","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "628" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Thu, 19 Oct 2023 16:44:27 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - efe0a924-54c5-435b-b72f-569a12b265e1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/pools - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 + method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902286558Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:16 GMT + - Thu, 19 Oct 2023 16:44:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2977,7 +4761,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f211549-8663-4f6e-914b-c94df8299eaf + - f4137b61-5f8c-47fe-ad75-2532fa466821 status: 200 OK code: 200 duration: "" @@ -2988,19 +4772,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:16 GMT + - Thu, 19 Oct 2023 16:44:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3010,7 +4794,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29562703-87eb-4c9a-942d-9dd2846beefd + - 87a83907-3bd2-4adc-80c5-1a39ea78c9a1 status: 200 OK code: 200 duration: "" @@ -3021,19 +4805,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:21 GMT + - Thu, 19 Oct 2023 16:44:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3043,7 +4827,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 826751b4-bb5e-4a3a-a57a-f91be34a74cd + - 72b94fdf-4ec4-43e9-90fd-1050b663e4c3 status: 200 OK code: 200 duration: "" @@ -3054,19 +4838,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:26 GMT + - Thu, 19 Oct 2023 16:44:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3076,7 +4860,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d70436a9-069c-4f5a-bc07-663dc24d3bce + - 0839c127-7ef6-4192-9bdc-0b9cb9772af1 status: 200 OK code: 200 duration: "" @@ -3087,19 +4871,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:31 GMT + - Thu, 19 Oct 2023 16:44:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3109,7 +4893,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 307e06d9-c8b3-404e-9011-42481f681b7c + - 91db3d3f-8a91-406f-b05a-9a6e3159d3d8 status: 200 OK code: 200 duration: "" @@ -3120,19 +4904,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:36 GMT + - Thu, 19 Oct 2023 16:44:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3142,7 +4926,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1971dabf-e9a8-4981-acf5-74fbfce983cb + - ca369d84-379f-4e36-8323-fc6b51317059 status: 200 OK code: 200 duration: "" @@ -3153,19 +4937,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:41 GMT + - Thu, 19 Oct 2023 16:45:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3175,7 +4959,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef8425a5-0b84-46ab-9d6c-8a012f7a34a1 + - fc85621e-1280-4e2c-8c59-9bf959f152d4 status: 200 OK code: 200 duration: "" @@ -3186,19 +4970,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:46 GMT + - Thu, 19 Oct 2023 16:45:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3208,7 +4992,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2380220-bcc3-455a-97ca-0fd51f2d5256 + - 2a95413c-8b6e-4a0b-a1b3-c2b6bf6db536 status: 200 OK code: 200 duration: "" @@ -3219,19 +5003,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:51 GMT + - Thu, 19 Oct 2023 16:45:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3241,7 +5025,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5310a49-4427-4ebc-84ee-a87cd5bf0c7e + - 5d51864a-0870-4470-a15f-4a9a4cf93ad0 status: 200 OK code: 200 duration: "" @@ -3252,19 +5036,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:06:56 GMT + - Thu, 19 Oct 2023 16:45:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3274,7 +5058,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86d2e618-d2e4-4c59-8bbd-bd880bfeced8 + - 721066cd-54db-4597-b730-ea364338bd59 status: 200 OK code: 200 duration: "" @@ -3285,19 +5069,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:01 GMT + - Thu, 19 Oct 2023 16:45:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3307,7 +5091,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96ec14d5-10ad-42eb-9406-3d155acae722 + - 2d9158e9-342c-48f6-88d3-4529a4157a8b status: 200 OK code: 200 duration: "" @@ -3318,19 +5102,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:06 GMT + - Thu, 19 Oct 2023 16:45:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3340,7 +5124,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1f00188-daf7-4ecc-94c5-1c656b720696 + - 313f5496-5cc3-44f2-8039-23fbbb4c6b22 status: 200 OK code: 200 duration: "" @@ -3351,19 +5135,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:11 GMT + - Thu, 19 Oct 2023 16:45:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3373,7 +5157,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa618a4b-c112-4880-a902-7e271d675601 + - bb1ba5f9-f3b6-4fd4-afd4-2f4e28a0e9d7 status: 200 OK code: 200 duration: "" @@ -3384,19 +5168,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:16 GMT + - Thu, 19 Oct 2023 16:45:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3406,7 +5190,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b339c155-a1d0-471f-9039-53aed2f95c2c + - dbd812b0-94b3-4b92-86da-e5f4c98ff8be status: 200 OK code: 200 duration: "" @@ -3417,19 +5201,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:21 GMT + - Thu, 19 Oct 2023 16:45:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3439,7 +5223,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 449117e5-644d-4484-90be-9be27e8abb92 + - 16209cd0-5b53-48c0-afd1-764d4dd2e1fd status: 200 OK code: 200 duration: "" @@ -3450,19 +5234,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:27 GMT + - Thu, 19 Oct 2023 16:45:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3472,7 +5256,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6aed8c1b-30ce-4158-806f-e4fe520050a1 + - b4ccbfa0-a9a9-4454-a24d-5a342e39cc2a status: 200 OK code: 200 duration: "" @@ -3483,19 +5267,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:32 GMT + - Thu, 19 Oct 2023 16:45:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3505,7 +5289,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 942b562c-04a5-4938-b2a4-0b4e1ce4a4b5 + - 15d828b2-49df-40fb-a3f0-88be6286f30b status: 200 OK code: 200 duration: "" @@ -3516,19 +5300,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:37 GMT + - Thu, 19 Oct 2023 16:45:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3538,7 +5322,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 995cb81a-b6a6-4f2c-b14d-72c97c35d603 + - 726c21a8-478f-4750-b664-ebbee4f4326b status: 200 OK code: 200 duration: "" @@ -3549,19 +5333,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:43 GMT + - Thu, 19 Oct 2023 16:46:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3571,7 +5355,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96357650-8a44-4cd8-a404-e36fd8b3bb9e + - c4e5b6de-1c91-4353-a040-c378e5799170 status: 200 OK code: 200 duration: "" @@ -3582,19 +5366,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:48 GMT + - Thu, 19 Oct 2023 16:46:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3604,7 +5388,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f114a171-ec4c-4071-83c7-283e61e494fe + - ca6ca55a-5d2e-45a7-9ef7-f6486712ecf1 status: 200 OK code: 200 duration: "" @@ -3615,19 +5399,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:41:20.407095Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:54 GMT + - Thu, 19 Oct 2023 16:46:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3637,7 +5421,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a00537b-41fa-4a0c-a7ef-0f585c36c65e + - 04e8fcad-7af9-49d5-b484-d1f1831ccf1a status: 200 OK code: 200 duration: "" @@ -3648,19 +5432,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:46:18.624156Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:07:59 GMT + - Thu, 19 Oct 2023 16:46:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3670,7 +5454,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05a52d48-b206-4ebe-898d-4c3e325f7db4 + - 4da2cf7d-a296-4878-9fec-9e31256d46f3 status: 200 OK code: 200 duration: "" @@ -3681,19 +5465,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:46:18.624156Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:04 GMT + - Thu, 19 Oct 2023 16:46:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3703,7 +5487,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c98a3311-acdf-4356-8ded-1627f1cc17e6 + - 2ddd95c2-49b1-4f0b-8c35-dc9550e739ec status: 200 OK code: 200 duration: "" @@ -3714,19 +5498,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=d29afef8-724f-493c-ad4c-f3e176e9a0e6&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:41:20.856069Z","error_message":null,"id":"bec60012-8e36-409e-b48f-d00017d8d201","name":"scw-test-pool-wait-test-pool-wait-2-bec600128e","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/ba6d3b71-abd8-497e-90d6-7041ac2e6679","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:46:18.603661Z"}],"total_count":1}' headers: Content-Length: - - "619" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:09 GMT + - Thu, 19 Oct 2023 16:46:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3736,7 +5520,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed8bd63f-00e0-46dc-b871-64c7822d38d5 + - c6db4ae4-754c-4c63-bfb8-76f02e3250db status: 200 OK code: 200 duration: "" @@ -3747,19 +5531,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "619" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:14 GMT + - Thu, 19 Oct 2023 16:46:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3769,7 +5553,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58622d63-a175-4786-a364-0346c505d302 + - 7273bdcb-a32f-4002-9705-ece0ea03870c status: 200 OK code: 200 duration: "" @@ -3780,19 +5564,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:46:18.624156Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:19 GMT + - Thu, 19 Oct 2023 16:46:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3802,7 +5586,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f8ecf40-7ab2-4af4-8647-7f490f29124b + - 857f3bec-0a38-4d4f-9af3-0cd1410fdecd status: 200 OK code: 200 duration: "" @@ -3813,19 +5597,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/882a0149-d4f0-470c-8a36-650eb9f9c627 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-19T16:34:41.054613Z","dhcp_enabled":true,"id":"882a0149-d4f0-470c-8a36-650eb9f9c627","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:34:41.054613Z","id":"29e823e2-bb1a-4e49-b0e6-726aeafb43b6","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:34:41.054613Z"},{"created_at":"2023-10-19T16:34:41.054613Z","id":"57b44457-ecb1-48e2-86a5-5d7cf356e438","subnet":"fd63:256c:45f7:d0e7::/64","updated_at":"2023-10-19T16:34:41.054613Z"}],"tags":[],"updated_at":"2023-10-19T16:34:41.054613Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "619" + - "714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:24 GMT + - Thu, 19 Oct 2023 16:46:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3835,7 +5619,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9f7a5ea-af02-4f80-b9b0-86394c1180a6 + - c96f56b0-cc54-480c-80bf-5aca4bc0cb9b status: 200 OK code: 200 duration: "" @@ -3846,19 +5630,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "619" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:29 GMT + - Thu, 19 Oct 2023 16:46:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3868,7 +5652,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d72f401-3c74-432d-a67b-1c7d9732c268 + - 8d239456-9ab3-4fef-bb06-117fac1b02da status: 200 OK code: 200 duration: "" @@ -3879,19 +5663,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/kubeconfig method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaFBSRVV5VFhwUk1FNUdiMWhFVkUxNlRWUkJlRTlFUlRKTmVsRXdUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQyWnpDa05OZEVoTlNETm9lRW96Tm0xNlJtVjBlbWhXVlRKNE5WbHhlWGhvVEZsMGVtSkRjR0ZQYUhKRGIwdzVhREpQU2xoMlpraFVUbkk1SzNka1RESjVSM2dLTmxKVEwyWmtVMmQxVm5WWGFtTmhTVkZYVkVaMWFFSlJaMWxFVERGdWVIZFVXbXRvVTBoVGR6RmhORzVIUzBzNWRpdDNObU0zYlVWaGFYWlNZWElyVUFwbmJrWlpjSEU1WkZGNmRXSXJZbGRKY1ROcE1XOVZjblpKYjNKNE5XeGhZV2cxY0VObWRHSllWMFpXTkVNMVRYQlRXa00yVTNCdldFaFdPR3gzVFRWQkNsVjNSSGRzV0c1UVQyNHdTVEJMVFV3MFpFNUtVVmxaVlU5UlEzTmFSVmsyYmpoNGVUSm1iMGwyUVZWbFYwbG5UR2xNV1V0SWJrUXZWRmg2VUhGRFIyWUtlVUk1V1ZkTWEzQnhhREZTT1hrMVRrOXNOWEYwUlVSSk9GRkZNMDlyWm10cEswbFJSVVZCU0VablVYUkVRbGRUTDJ4QlkydFNkVmd2Yms5WFJsVndiQXB4WW1RMEx6QjBZbWRZVEU1TVdYQTBSbEpyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGUkdKb1JXSTBiVnBJYVVGMmVIbHhUSGcyWnpaNE5YcGxUM3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEWkdGT2VGTnBiV05pVDNsdGQza3dUVWczV25CT05XNXZWRll6U2xKT2MxRjFhamROTURkeVEyaFdORVpuYmpSM1V3cE5UMnRxYUhkcFZVcGlLMDU2YVVoMVoxWjRjSGxLT0RCeVNVOUhWMFE0VWxCTmNGSndUMlUxWTBOalZuVlJlbEI0YXpJNVZFVnRUVmt2UWxSc1pGTlhDbUo0YTNkVmJVNDVkV1JaZUcweWNsRjRWbGxtY2toTFRrZ3lhamxJTUdkak9XMHdVbFpMVld3NFRVeHZOM3BMYVhjMGNsSnZjVUk0UVcxUFdqWkRMMElLUm1OR2RUSlJjM1JwU1VOamRqazBVME5YVmpGdGMwSTFUVFF4YVhSdGFFdHJZVVp4VEd0M1IzbG5SemxLSzJZeldEaGFVVEJHUW1oVGVqQTVkak5KY3dwck4yWnVhRlpQUkRaTGNHdHVWa1kyZW1wNldGWk5VbTgxUW5wUk55OVpNVXREVVdsdWNVRkJlU3RFUjB4RFl6TkdkV28xWm5WcE5HaDNkRlZSVW1VekNqaHJhV29yUkN0bWJVeDRiMDUyYUU4M1dFd3JUMDVPYTI5UFFpODJRVmx4T0VWYVRRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly83MGRlMDY0Yi1kZDZkLTQxZDEtYjk5Ny03MDVlMTE1NmRiZjEuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGZ1VqUGRuem5pWE1GajFHN0V3MzdtZXdqY0pyNTZqS0EyVTVvRm5YQ2tMaFB4a0l5Wkk3U2diSQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "619" + - "2606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:34 GMT + - Thu, 19 Oct 2023 16:46:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3901,7 +5685,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 262c1c43-a985-4159-8bb7-d93f2cf16ce4 + - e509783a-efc0-4458-9296-2aa64f52aa4b status: 200 OK code: 200 duration: "" @@ -3912,19 +5696,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:46:18.624156Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:39 GMT + - Thu, 19 Oct 2023 16:46:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3934,7 +5718,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3879a53-96a9-4bae-939b-d733c17b64d8 + - 6597f07a-eabb-4610-95ad-689728198121 status: 200 OK code: 200 duration: "" @@ -3945,19 +5729,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:06:15.902287Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:44 GMT + - Thu, 19 Oct 2023 16:46:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3967,7 +5751,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 842a50e1-3372-4350-9436-3b2a116861c8 + - ff6e5c71-f7f4-47bc-a05c-1105747fa3bb status: 200 OK code: 200 duration: "" @@ -3978,19 +5762,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=d29afef8-724f-493c-ad4c-f3e176e9a0e6&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:08:46.891888Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:41:20.856069Z","error_message":null,"id":"bec60012-8e36-409e-b48f-d00017d8d201","name":"scw-test-pool-wait-test-pool-wait-2-bec600128e","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/ba6d3b71-abd8-497e-90d6-7041ac2e6679","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:46:18.603661Z"}],"total_count":1}' headers: Content-Length: - - "617" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:49 GMT + - Thu, 19 Oct 2023 16:46:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4000,7 +5784,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f56b8ec-16e3-4e71-9235-e544b59b92dc + - efcd3d89-e615-439c-8f0a-15e91101f42c status: 200 OK code: 200 duration: "" @@ -4011,19 +5795,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=34a36b69-f6e4-4279-8f74-c49a6213083c&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:08:46.891888Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:36:27.777812Z","error_message":null,"id":"b0a9dc5d-be0e-41bf-b5ce-e13680526495","name":"scw-test-pool-wait-test-pool-wait-b0a9dc5dbe0e","pool_id":"34a36b69-f6e4-4279-8f74-c49a6213083c","provider_id":"scaleway://instance/fr-par-1/456dcdc2-0d49-445e-ba9c-5a4039a43c73","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:46:18.568289Z"}],"total_count":1}' headers: Content-Length: - - "617" + - "689" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:49 GMT + - Thu, 19 Oct 2023 16:46:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4033,7 +5817,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff1ffc40-3494-4cf4-af45-2a8475cc635c + - 0f6cbcc1-1b74-443e-b30e-d4c2f551a7d1 status: 200 OK code: 200 duration: "" @@ -4044,19 +5828,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=a1d75cfa-b784-4b5f-9256-29223915edbe&status=unknown + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/882a0149-d4f0-470c-8a36-650eb9f9c627 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:16.402282Z","error_message":null,"id":"935b7faf-7c51-49d9-a8d8-d170259c267d","name":"scw-poolconfigwait-minimal-935b7faf7c5149d9a8d","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/e7c464e7-ac73-40d2-8dc5-a2953e903733","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:08:46.880222Z"}],"total_count":1}' + body: '{"created_at":"2023-10-19T16:34:41.054613Z","dhcp_enabled":true,"id":"882a0149-d4f0-470c-8a36-650eb9f9c627","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:34:41.054613Z","id":"29e823e2-bb1a-4e49-b0e6-726aeafb43b6","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:34:41.054613Z"},{"created_at":"2023-10-19T16:34:41.054613Z","id":"57b44457-ecb1-48e2-86a5-5d7cf356e438","subnet":"fd63:256c:45f7:d0e7::/64","updated_at":"2023-10-19T16:34:41.054613Z"}],"tags":[],"updated_at":"2023-10-19T16:34:41.054613Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "621" + - "714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:49 GMT + - Thu, 19 Oct 2023 16:46:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4066,7 +5850,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 057a7a9b-ebac-4fb4-8cb1-08800c793fb0 + - 1c831b30-c43c-47b2-b4a1-b9b4a88e26dc status: 200 OK code: 200 duration: "" @@ -4077,19 +5861,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1460" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:49 GMT + - Thu, 19 Oct 2023 16:46:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4099,7 +5883,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2cb24f5-5024-43be-8107-47c04c411250 + - 8e851df4-4efa-428c-92bd-2c3e2f081573 status: 200 OK code: 200 duration: "" @@ -4110,19 +5894,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/kubeconfig method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:08:46.891888Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaFBSRVV5VFhwUk1FNUdiMWhFVkUxNlRWUkJlRTlFUlRKTmVsRXdUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQyWnpDa05OZEVoTlNETm9lRW96Tm0xNlJtVjBlbWhXVlRKNE5WbHhlWGhvVEZsMGVtSkRjR0ZQYUhKRGIwdzVhREpQU2xoMlpraFVUbkk1SzNka1RESjVSM2dLTmxKVEwyWmtVMmQxVm5WWGFtTmhTVkZYVkVaMWFFSlJaMWxFVERGdWVIZFVXbXRvVTBoVGR6RmhORzVIUzBzNWRpdDNObU0zYlVWaGFYWlNZWElyVUFwbmJrWlpjSEU1WkZGNmRXSXJZbGRKY1ROcE1XOVZjblpKYjNKNE5XeGhZV2cxY0VObWRHSllWMFpXTkVNMVRYQlRXa00yVTNCdldFaFdPR3gzVFRWQkNsVjNSSGRzV0c1UVQyNHdTVEJMVFV3MFpFNUtVVmxaVlU5UlEzTmFSVmsyYmpoNGVUSm1iMGwyUVZWbFYwbG5UR2xNV1V0SWJrUXZWRmg2VUhGRFIyWUtlVUk1V1ZkTWEzQnhhREZTT1hrMVRrOXNOWEYwUlVSSk9GRkZNMDlyWm10cEswbFJSVVZCU0VablVYUkVRbGRUTDJ4QlkydFNkVmd2Yms5WFJsVndiQXB4WW1RMEx6QjBZbWRZVEU1TVdYQTBSbEpyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGUkdKb1JXSTBiVnBJYVVGMmVIbHhUSGcyWnpaNE5YcGxUM3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEWkdGT2VGTnBiV05pVDNsdGQza3dUVWczV25CT05XNXZWRll6U2xKT2MxRjFhamROTURkeVEyaFdORVpuYmpSM1V3cE5UMnRxYUhkcFZVcGlLMDU2YVVoMVoxWjRjSGxLT0RCeVNVOUhWMFE0VWxCTmNGSndUMlUxWTBOalZuVlJlbEI0YXpJNVZFVnRUVmt2UWxSc1pGTlhDbUo0YTNkVmJVNDVkV1JaZUcweWNsRjRWbGxtY2toTFRrZ3lhamxJTUdkak9XMHdVbFpMVld3NFRVeHZOM3BMYVhjMGNsSnZjVUk0UVcxUFdqWkRMMElLUm1OR2RUSlJjM1JwU1VOamRqazBVME5YVmpGdGMwSTFUVFF4YVhSdGFFdHJZVVp4VEd0M1IzbG5SemxLSzJZeldEaGFVVEJHUW1oVGVqQTVkak5KY3dwck4yWnVhRlpQUkRaTGNHdHVWa1kyZW1wNldGWk5VbTgxUW5wUk55OVpNVXREVVdsdWNVRkJlU3RFUjB4RFl6TkdkV28xWm5WcE5HaDNkRlZSVW1VekNqaHJhV29yUkN0bWJVeDRiMDUyYUU4M1dFd3JUMDVPYTI5UFFpODJRVmx4T0VWYVRRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly83MGRlMDY0Yi1kZDZkLTQxZDEtYjk5Ny03MDVlMTE1NmRiZjEuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGZ1VqUGRuem5pWE1GajFHN0V3MzdtZXdqY0pyNTZqS0EyVTVvRm5YQ2tMaFB4a0l5Wkk3U2diSQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "617" + - "2606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:49 GMT + - Thu, 19 Oct 2023 16:46:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4132,7 +5916,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9095f84-f02f-4a3a-8c7f-2fa362e5c0a0 + - 5d2e2a4d-ccf5-4ac9-b51f-f6affedb0ed6 status: 200 OK code: 200 duration: "" @@ -4143,19 +5927,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:46:18.624156Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1460" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:50 GMT + - Thu, 19 Oct 2023 16:46:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4165,7 +5949,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - deb1a10b-2237-4ba7-8aeb-9e89396d91d1 + - b3d52a6c-7f43-4951-b2f2-aaae5d32da40 status: 200 OK code: 200 duration: "" @@ -4176,19 +5960,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBvb2xjb25maWd3YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQySkhDa2c1TUZwYVNXaGlhamh4YUZkV2JFNVpLMUpzV2xkdVNIRlZTaTlzY1hvck1IVm9la1puUzNCTWVqa3ZkbTE2VkZoRlFVNW1OekppWVcxNGNEQjRkalFLWWxJM1VFbDViR1ZFYVZOVWFGb3hVV1F5VTFocFdsbEdLMUF2ZEdodE5sVTRORUZMY25kclRWUk5jRXRVUVVJMFIyUTFURWMyYUN0dVRXbFpkVkJ1ZWdwalVEQkVRaTlXTjIxME5IRmtSSFJIUkhvNVkzVkxSak53ZDFrM1NrWTJTV0ZNWlZveFUyc3pjamxPZWpacUwyeDJlRFF3UTBkWGVVaElMMkp5VFhsTkNtaFVabFEyZEdWMWJIRTNSVGg1ZURGdGFVcHRZM1ZrWlN0NlVFdFNRMUJVV1d0MGJUVTFkbWR1SzNwTE9YTmxVR1JoTnk5RU0zcERUbmsyYldWS1VtSUtZMWg2Y2pKb2JqUndXRXQ2UVN0MVMzQkRRM1JSYjFoeFMyMTJUbHAxWVRVME9TOHpOelp2WVRka1JXWnlhRVozV1dVelRYRkxNVk0zVFc0d05rWnlaZ3A1TmxWV2JXNWlVRTl3YVVodU1uUktVRnBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTUhGVk5VeDVVVkU1ZGpWRVpIaE9TV1Y0Y1VKa1NqUmllbE5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDVVhBd2QwZERkbGR1SzFKMU5FTkxVa2hxTUVSWVQyODVhM0JxUW13ek1HSkhjV0ZtYlZKYVQyRlNUR3BWYUhCTlpBcG1kRmc0UnpOM1lXODVaRU5aTm1SdlUwcFZialZoTUZWYWIyOHlaa2NyWVZodE1rTldNVXhrY2tjeGFrNXJjVWxOU2xKUFRrdDZXbVJ2TVVaVWFVTndDbGR6YzNSRVIxQnlRa3hLZFN0aWIzRktRekZaV0hWc1FpODJSalJNTWpWaGMyMXRUVTlUUTI1aGVWUnNSQ3RrY1hWRFZFUm9WbmhsTUZKUFNGZEZTVGtLY21WS2FFVlpORFJTVTBsR05sUkpMMjl4V0VKRFVFOVFTalpQZHpoQmQyRk9RMDVLTVZCS2Jpc3hZakE0Um5kblRrOWlNakJLTDFWNFduSjBhWHB2YmdwaFVWSjRNM1pqT0dkNVJURXdkRkJ0TkdNeFlYaERablV4TUZOcFJtc3paVEpaYjJ0TVIxTTBkbGhyVkZJclZrZzVabGt3WVhCbmVIZHpSbGRTTDFCTkNsWXlUWFZEYm0xVFkwcHRLMjgwWVcwcmVHSk1SMlpoSzBVMGRVdFhPVmd2ZVRSM1VBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4MjQ1Ni0wMjBlLTQyZjYtOTg4MC05Yzg1MzAzZTI3NzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AcG9vbGNvbmZpZ3dhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInBvb2xjb25maWd3YWl0IgogICAgdXNlcjogcG9vbGNvbmZpZ3dhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBwb29sY29uZmlnd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHBvb2xjb25maWd3YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ0FIY1drRUJNT0FoUHEzaXpaeWwzeDQ5WFBjQTFxWU5NcUdlWFJ4cGRVbDNzdzV6c1pKazNnNQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2606" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:50 GMT + - Thu, 19 Oct 2023 16:46:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4198,7 +5982,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40721c81-54b3-4a18-9876-46ef178378ed + - 4fefa140-a6d8-4268-abd9-4b34c2ddcceb status: 200 OK code: 200 duration: "" @@ -4209,19 +5993,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=d29afef8-724f-493c-ad4c-f3e176e9a0e6&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:41:20.856069Z","error_message":null,"id":"bec60012-8e36-409e-b48f-d00017d8d201","name":"scw-test-pool-wait-test-pool-wait-2-bec600128e","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/ba6d3b71-abd8-497e-90d6-7041ac2e6679","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:46:18.603661Z"}],"total_count":1}' headers: Content-Length: - - "617" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:50 GMT + - Thu, 19 Oct 2023 16:46:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4231,7 +6015,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68d326fc-e861-416a-962c-7416d4bc136a + - 844b9afe-2f3a-4773-a5bf-e448245a64f4 status: 200 OK code: 200 duration: "" @@ -4242,19 +6026,54 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=34a36b69-f6e4-4279-8f74-c49a6213083c&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:08:46.891888Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:36:27.777812Z","error_message":null,"id":"b0a9dc5d-be0e-41bf-b5ce-e13680526495","name":"scw-test-pool-wait-test-pool-wait-b0a9dc5dbe0e","pool_id":"34a36b69-f6e4-4279-8f74-c49a6213083c","provider_id":"scaleway://instance/fr-par-1/456dcdc2-0d49-445e-ba9c-5a4039a43c73","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:46:18.568289Z"}],"total_count":1}' + headers: + Content-Length: + - "689" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:46:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e793fc3-686d-41f0-a177-271ea42f0977 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"autoscaling":null,"size":2,"min_size":null,"max_size":2,"autohealing":null,"tags":null,"kubelet_args":null,"upgrade_policy":{"max_unavailable":null,"max_surge":null}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 + method: PATCH + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996365Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "631" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:50 GMT + - Thu, 19 Oct 2023 16:46:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4264,7 +6083,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60170884-8573-41d1-9dec-ae3aa6835017 + - e401eed2-5c8d-4b4f-bdab-cc13297d20f7 status: 200 OK code: 200 duration: "" @@ -4275,19 +6094,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=371a76d7-faca-46d8-a698-c079a89d2d59&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:32.142675Z","error_message":null,"id":"6f99bb99-10e8-487f-b527-eaf526aaa91d","name":"scw-poolconfigwait-default-6f99bb9910e8487fb52","pool_id":"371a76d7-faca-46d8-a698-c079a89d2d59","provider_id":"scaleway://instance/fr-par-1/56c93cbb-e9a7-445c-a706-2586b8775d92","public_ip_v4":"163.172.131.97","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:08:46.847829Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "652" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:50 GMT + - Thu, 19 Oct 2023 16:46:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4297,7 +6116,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c515d448-93c4-4607-b167-0a773f02b53e + - 60ae45f6-db07-4580-adbc-c4dc6ee0f42e status: 200 OK code: 200 duration: "" @@ -4308,19 +6127,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=a1d75cfa-b784-4b5f-9256-29223915edbe&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:16.402282Z","error_message":null,"id":"935b7faf-7c51-49d9-a8d8-d170259c267d","name":"scw-poolconfigwait-minimal-935b7faf7c5149d9a8d","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/e7c464e7-ac73-40d2-8dc5-a2953e903733","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:08:46.880222Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "621" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:50 GMT + - Thu, 19 Oct 2023 16:46:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4330,7 +6149,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 053074a8-8bbf-41c6-9d9f-54732c2f24f9 + - baada17f-e937-4a92-82cb-5082ceb2ab05 status: 200 OK code: 200 duration: "" @@ -4341,19 +6160,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1460" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:51 GMT + - Thu, 19 Oct 2023 16:46:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4363,7 +6182,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 778591ba-1f09-4dc9-9cca-5c1b55c07a31 + - edaf858c-6dce-4689-a3aa-678c83a99533 status: 200 OK code: 200 duration: "" @@ -4374,19 +6193,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBvb2xjb25maWd3YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQySkhDa2c1TUZwYVNXaGlhamh4YUZkV2JFNVpLMUpzV2xkdVNIRlZTaTlzY1hvck1IVm9la1puUzNCTWVqa3ZkbTE2VkZoRlFVNW1OekppWVcxNGNEQjRkalFLWWxJM1VFbDViR1ZFYVZOVWFGb3hVV1F5VTFocFdsbEdLMUF2ZEdodE5sVTRORUZMY25kclRWUk5jRXRVUVVJMFIyUTFURWMyYUN0dVRXbFpkVkJ1ZWdwalVEQkVRaTlXTjIxME5IRmtSSFJIUkhvNVkzVkxSak53ZDFrM1NrWTJTV0ZNWlZveFUyc3pjamxPZWpacUwyeDJlRFF3UTBkWGVVaElMMkp5VFhsTkNtaFVabFEyZEdWMWJIRTNSVGg1ZURGdGFVcHRZM1ZrWlN0NlVFdFNRMUJVV1d0MGJUVTFkbWR1SzNwTE9YTmxVR1JoTnk5RU0zcERUbmsyYldWS1VtSUtZMWg2Y2pKb2JqUndXRXQ2UVN0MVMzQkRRM1JSYjFoeFMyMTJUbHAxWVRVME9TOHpOelp2WVRka1JXWnlhRVozV1dVelRYRkxNVk0zVFc0d05rWnlaZ3A1TmxWV2JXNWlVRTl3YVVodU1uUktVRnBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTUhGVk5VeDVVVkU1ZGpWRVpIaE9TV1Y0Y1VKa1NqUmllbE5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDVVhBd2QwZERkbGR1SzFKMU5FTkxVa2hxTUVSWVQyODVhM0JxUW13ek1HSkhjV0ZtYlZKYVQyRlNUR3BWYUhCTlpBcG1kRmc0UnpOM1lXODVaRU5aTm1SdlUwcFZialZoTUZWYWIyOHlaa2NyWVZodE1rTldNVXhrY2tjeGFrNXJjVWxOU2xKUFRrdDZXbVJ2TVVaVWFVTndDbGR6YzNSRVIxQnlRa3hLZFN0aWIzRktRekZaV0hWc1FpODJSalJNTWpWaGMyMXRUVTlUUTI1aGVWUnNSQ3RrY1hWRFZFUm9WbmhsTUZKUFNGZEZTVGtLY21WS2FFVlpORFJTVTBsR05sUkpMMjl4V0VKRFVFOVFTalpQZHpoQmQyRk9RMDVLTVZCS2Jpc3hZakE0Um5kblRrOWlNakJLTDFWNFduSjBhWHB2YmdwaFVWSjRNM1pqT0dkNVJURXdkRkJ0TkdNeFlYaERablV4TUZOcFJtc3paVEpaYjJ0TVIxTTBkbGhyVkZJclZrZzVabGt3WVhCbmVIZHpSbGRTTDFCTkNsWXlUWFZEYm0xVFkwcHRLMjgwWVcwcmVHSk1SMlpoSzBVMGRVdFhPVmd2ZVRSM1VBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4MjQ1Ni0wMjBlLTQyZjYtOTg4MC05Yzg1MzAzZTI3NzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AcG9vbGNvbmZpZ3dhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInBvb2xjb25maWd3YWl0IgogICAgdXNlcjogcG9vbGNvbmZpZ3dhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBwb29sY29uZmlnd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHBvb2xjb25maWd3YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ0FIY1drRUJNT0FoUHEzaXpaeWwzeDQ5WFBjQTFxWU5NcUdlWFJ4cGRVbDNzdzV6c1pKazNnNQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2606" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:51 GMT + - Thu, 19 Oct 2023 16:46:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4396,7 +6215,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96a17868-f5dc-4d45-98e5-ac38776cf443 + - 8362a45f-e48b-42cf-9c1c-cb455d3ad0ee status: 200 OK code: 200 duration: "" @@ -4407,19 +6226,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:51 GMT + - Thu, 19 Oct 2023 16:46:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4429,7 +6248,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b282c477-fefd-4fb9-83b5-ccb5235defd6 + - e2a956ea-b119-4efe-85c8-035120feaa78 status: 200 OK code: 200 duration: "" @@ -4440,19 +6259,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:08:46.891888Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:51 GMT + - Thu, 19 Oct 2023 16:46:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4462,7 +6281,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cac6dc3-c589-48d8-a1a2-f949758d568f + - 476ab48b-a1b5-4354-8061-16cd75942ef0 status: 200 OK code: 200 duration: "" @@ -4473,19 +6292,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=371a76d7-faca-46d8-a698-c079a89d2d59&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:32.142675Z","error_message":null,"id":"6f99bb99-10e8-487f-b527-eaf526aaa91d","name":"scw-poolconfigwait-default-6f99bb9910e8487fb52","pool_id":"371a76d7-faca-46d8-a698-c079a89d2d59","provider_id":"scaleway://instance/fr-par-1/56c93cbb-e9a7-445c-a706-2586b8775d92","public_ip_v4":"163.172.131.97","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:08:46.847829Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "652" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:51 GMT + - Thu, 19 Oct 2023 16:46:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4495,7 +6314,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e8b470c-a1ee-4bab-b728-27930c0d09f8 + - b2e48f98-dd74-4326-906e-922255ef9328 status: 200 OK code: 200 duration: "" @@ -4506,19 +6325,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=a1d75cfa-b784-4b5f-9256-29223915edbe&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:16.402282Z","error_message":null,"id":"935b7faf-7c51-49d9-a8d8-d170259c267d","name":"scw-poolconfigwait-minimal-935b7faf7c5149d9a8d","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/e7c464e7-ac73-40d2-8dc5-a2953e903733","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:08:46.880222Z"}],"total_count":1}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "621" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:51 GMT + - Thu, 19 Oct 2023 16:46:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4528,32 +6347,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f6f242c-bb3a-41c6-8456-9c56d91ea860 + - afb9fab7-c1f9-4235-89ba-f71157f59152 status: 200 OK code: 200 duration: "" - request: - body: '{"autoscaling":null,"size":2,"min_size":null,"max_size":2,"autohealing":null,"tags":null,"kubelet_args":null,"upgrade_policy":{"max_unavailable":null,"max_surge":null}}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "628" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Thu, 19 Oct 2023 16:47:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 341fefbd-67c9-4f7a-bdd8-0f540193d61e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe - method: PATCH + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 + method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812824585Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:52 GMT + - Thu, 19 Oct 2023 16:47:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4563,7 +6413,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33235541-8d88-42ae-81db-bbb71f12070d + - 50995582-77c5-4300-bf7b-a95b30326e52 status: 200 OK code: 200 duration: "" @@ -4574,19 +6424,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:52 GMT + - Thu, 19 Oct 2023 16:47:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4596,7 +6446,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a5e0d74-5aee-45ae-96b9-a1a51a1fa4d2 + - e236f0df-2ed5-4a38-84d2-10e40c4c36b1 status: 200 OK code: 200 duration: "" @@ -4607,19 +6457,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:08:57 GMT + - Thu, 19 Oct 2023 16:47:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4629,7 +6479,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7194ee44-07eb-46a5-966e-16adbde58bd0 + - 036a57c3-b922-4723-a74c-1435b6e0759a status: 200 OK code: 200 duration: "" @@ -4640,19 +6490,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:02 GMT + - Thu, 19 Oct 2023 16:47:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4662,7 +6512,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d9c6c1c-c487-43d5-9051-bab60bc33aaa + - 94515723-43ab-4969-a900-ca5512306194 status: 200 OK code: 200 duration: "" @@ -4673,19 +6523,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:07 GMT + - Thu, 19 Oct 2023 16:47:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4695,7 +6545,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b6116b9-7550-4ca8-894b-a3f1a58b1fa2 + - e5903ecf-f15d-48bf-924d-974b19c729d7 status: 200 OK code: 200 duration: "" @@ -4706,19 +6556,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:12 GMT + - Thu, 19 Oct 2023 16:47:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4728,7 +6578,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 146243c3-7068-4779-b2f3-b1bcf1e4acb3 + - c8db5132-53f6-4258-b10b-322c192eb7a0 status: 200 OK code: 200 duration: "" @@ -4739,19 +6589,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:17 GMT + - Thu, 19 Oct 2023 16:47:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4761,7 +6611,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b92f0b7-69a8-46ea-92fd-75aadbde50da + - e4859cd2-361c-4f5b-9122-42a2b48bd497 status: 200 OK code: 200 duration: "" @@ -4772,19 +6622,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:22 GMT + - Thu, 19 Oct 2023 16:47:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4794,7 +6644,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c22094f4-2eda-4e58-8137-965600e3d3b9 + - 5f5fe1e3-ff0b-48ab-942b-df7391dabe00 status: 200 OK code: 200 duration: "" @@ -4805,19 +6655,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:27 GMT + - Thu, 19 Oct 2023 16:47:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4827,7 +6677,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1eb4960-b534-4a75-aa1d-2fc7d8ffa383 + - f8fb7486-da4e-4d71-b790-d9b5bb29e4cc status: 200 OK code: 200 duration: "" @@ -4838,19 +6688,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:32 GMT + - Thu, 19 Oct 2023 16:47:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4860,7 +6710,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 404e0e3d-cfe1-4ce7-b909-9214e733fc0a + - 62e1b244-c7bc-4adb-8175-acc51da3391e status: 200 OK code: 200 duration: "" @@ -4871,19 +6721,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:37 GMT + - Thu, 19 Oct 2023 16:47:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4893,7 +6743,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d847a4fe-c2af-4c76-8eb4-6544209f6a23 + - 18eb420f-4e88-42c3-adc8-ad722bfdea97 status: 200 OK code: 200 duration: "" @@ -4904,19 +6754,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:42 GMT + - Thu, 19 Oct 2023 16:48:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4926,7 +6776,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30d810aa-87cd-4c80-b9b9-083ea1d7d4a5 + - 992c42ca-b318-4c0c-b53c-47d547e533c4 status: 200 OK code: 200 duration: "" @@ -4937,19 +6787,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:47 GMT + - Thu, 19 Oct 2023 16:48:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4959,7 +6809,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 279477da-2e2a-4da5-8112-39a828240b50 + - df31c899-2fe0-4fcb-9a46-9ce7be10c073 status: 200 OK code: 200 duration: "" @@ -4970,19 +6820,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:52 GMT + - Thu, 19 Oct 2023 16:48:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4992,7 +6842,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c702ac70-9287-4653-a363-d6d03f811829 + - 6288a848-8237-42d1-870e-a62dac33daa6 status: 200 OK code: 200 duration: "" @@ -5003,19 +6853,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:09:57 GMT + - Thu, 19 Oct 2023 16:48:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5025,7 +6875,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3ff3fe3-dba9-4bf3-b612-3146b84068f7 + - 0ed04aa2-910f-4c11-96cb-13f479d14023 status: 200 OK code: 200 duration: "" @@ -5036,19 +6886,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:02 GMT + - Thu, 19 Oct 2023 16:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5058,7 +6908,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - baa5f414-ca9d-4013-9cd2-90b9d81ae110 + - 0e9b214b-3615-49cd-a210-f2ea5a0da226 status: 200 OK code: 200 duration: "" @@ -5069,19 +6919,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:08 GMT + - Thu, 19 Oct 2023 16:48:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5091,7 +6941,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3dcaec1-447f-482a-8ea7-b761b6a30816 + - 22cba363-f9e6-41e9-9cb5-392481120989 status: 200 OK code: 200 duration: "" @@ -5102,19 +6952,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:13 GMT + - Thu, 19 Oct 2023 16:48:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5124,7 +6974,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 079ef006-cfa7-4c36-8ef8-a5a9177bb3ca + - a6100324-b6e9-446b-ba86-12ec04650d6f status: 200 OK code: 200 duration: "" @@ -5135,19 +6985,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:18 GMT + - Thu, 19 Oct 2023 16:48:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5157,7 +7007,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50b09c24-5acd-4bee-a0cf-db3562ed6c66 + - b4fcdba1-afd6-4297-94ee-a5a8b3c9d190 status: 200 OK code: 200 duration: "" @@ -5168,19 +7018,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:23 GMT + - Thu, 19 Oct 2023 16:48:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5190,7 +7040,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50a7139e-18ad-4bd3-9b92-29d3f084eea8 + - 8c74f6fd-a9d9-48fa-aefd-d5630fb7fb6b status: 200 OK code: 200 duration: "" @@ -5201,19 +7051,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:28 GMT + - Thu, 19 Oct 2023 16:48:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5223,7 +7073,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 790d1c1a-9592-4556-a8c4-e4d75388997d + - 89fe99ae-29b6-46cf-b9b3-985ab06c7bb9 status: 200 OK code: 200 duration: "" @@ -5234,19 +7084,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:33 GMT + - Thu, 19 Oct 2023 16:48:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5256,7 +7106,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f85db340-a364-4a4c-9300-17c1c0feb2e3 + - dfae1959-bb69-408e-b0b7-db42b31b5466 status: 200 OK code: 200 duration: "" @@ -5267,19 +7117,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:38 GMT + - Thu, 19 Oct 2023 16:48:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5289,7 +7139,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ef23745-9b5c-469b-bc51-20f4ead5a3d2 + - 1145e3bb-77b4-4987-a7db-f2fba8587af6 status: 200 OK code: 200 duration: "" @@ -5300,19 +7150,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:43 GMT + - Thu, 19 Oct 2023 16:49:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5322,7 +7172,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4945005-d168-49a1-b599-7015540c2272 + - f6b0418a-df7d-49b2-a6b2-3e1e18d97f27 status: 200 OK code: 200 duration: "" @@ -5333,19 +7183,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:48 GMT + - Thu, 19 Oct 2023 16:49:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5355,7 +7205,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 183ad7fd-7d00-4b36-bc97-61cfd5db9dbb + - 863e75de-d27d-4972-8f64-d5f675a7006e status: 200 OK code: 200 duration: "" @@ -5366,19 +7216,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:53 GMT + - Thu, 19 Oct 2023 16:49:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5388,7 +7238,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efb06a1e-a7a1-47b6-9d4d-a91d52400ed9 + - f01f7d73-b8eb-4204-a127-7db386ac7fa1 status: 200 OK code: 200 duration: "" @@ -5399,19 +7249,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:10:58 GMT + - Thu, 19 Oct 2023 16:49:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5421,7 +7271,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a723bf9-4487-415b-b0cc-698bd9d6fbde + - e37e4322-bb97-467f-a8da-e2132166cd2a status: 200 OK code: 200 duration: "" @@ -5432,19 +7282,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:03 GMT + - Thu, 19 Oct 2023 16:49:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5454,7 +7304,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2db09268-5fed-4710-813c-7a1b1fe4cba7 + - 5e5cc671-5ec2-445e-a713-3b89b478c2f5 status: 200 OK code: 200 duration: "" @@ -5465,19 +7315,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:08 GMT + - Thu, 19 Oct 2023 16:49:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5487,7 +7337,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd338087-3c27-4bd1-b9da-55d9fff52bde + - 52e1e511-ea71-4b2d-952f-97c39c1e9a52 status: 200 OK code: 200 duration: "" @@ -5498,19 +7348,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:13 GMT + - Thu, 19 Oct 2023 16:49:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5520,7 +7370,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffcb328b-57a9-47a4-9213-87e68af63256 + - 082f80a0-0c93-4840-a8dd-d5ca62b0d931 status: 200 OK code: 200 duration: "" @@ -5531,19 +7381,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:18 GMT + - Thu, 19 Oct 2023 16:49:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5553,7 +7403,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfd06463-3118-46bb-bb38-98519fc6677c + - 54c694a7-4be1-4228-b8ce-e5514415333f status: 200 OK code: 200 duration: "" @@ -5564,19 +7414,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:23 GMT + - Thu, 19 Oct 2023 16:49:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5586,7 +7436,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff44fc0c-4288-41b5-bfd0-1efc44236ca4 + - 01b257d2-9d77-419d-9bd4-817c59530563 status: 200 OK code: 200 duration: "" @@ -5597,19 +7447,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:28 GMT + - Thu, 19 Oct 2023 16:49:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5619,7 +7469,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22b3ba16-221d-4ef7-aa2d-e08f315eaa48 + - 863b0359-7c00-44c6-873f-2ccba2f14682 status: 200 OK code: 200 duration: "" @@ -5630,19 +7480,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:33 GMT + - Thu, 19 Oct 2023 16:49:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5652,7 +7502,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2dceeb3-53d7-443e-b211-68edb3bd0dab + - 01cf6bd1-0b41-4e27-8104-508916900f8e status: 200 OK code: 200 duration: "" @@ -5663,19 +7513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:39 GMT + - Thu, 19 Oct 2023 16:49:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5685,7 +7535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e6a69ee-c484-4205-b0d3-58a7678703a6 + - 88f46c9a-f359-4d0d-bb43-47f1407a8e75 status: 200 OK code: 200 duration: "" @@ -5696,19 +7546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:44 GMT + - Thu, 19 Oct 2023 16:50:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5718,7 +7568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 289ccc06-a0fd-42c0-9904-8958f623be52 + - e34e896b-23de-4101-8371-68e1c300518d status: 200 OK code: 200 duration: "" @@ -5729,19 +7579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:49 GMT + - Thu, 19 Oct 2023 16:50:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5751,7 +7601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee254381-e2e5-4bb7-a43c-39d36505b24e + - 85fbdf54-1a60-403c-927f-711a850a6eb3 status: 200 OK code: 200 duration: "" @@ -5762,19 +7612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:54 GMT + - Thu, 19 Oct 2023 16:50:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5784,7 +7634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 537b0c7f-3f96-4c13-8e72-3d72571bac65 + - 556da04f-113b-48ba-a24a-0e2baed7f1ef status: 200 OK code: 200 duration: "" @@ -5795,19 +7645,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:11:59 GMT + - Thu, 19 Oct 2023 16:50:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5817,7 +7667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bf6dd11-bfb6-47cd-ad78-4b19a08bd6a2 + - 6c303d41-1992-4f81-9fcb-ef36997e7855 status: 200 OK code: 200 duration: "" @@ -5828,19 +7678,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:04 GMT + - Thu, 19 Oct 2023 16:50:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5850,7 +7700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc500823-fe56-48da-a0d2-7c7353021ec0 + - 557b5f06-5247-49c2-87d4-3d0c5b6f3145 status: 200 OK code: 200 duration: "" @@ -5861,19 +7711,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:46:21.407996Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:09 GMT + - Thu, 19 Oct 2023 16:50:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5883,7 +7733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d4101f2-34bd-4201-80b2-8cddc4e97b8e + - f9ef825e-2431-466d-b94f-7647e4a94edf status: 200 OK code: 200 duration: "" @@ -5894,19 +7744,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:33.485804Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:14 GMT + - Thu, 19 Oct 2023 16:50:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5916,7 +7766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b1a1fd4-fcd9-4d7d-9886-0799c772ba94 + - ac0e6b54-9132-40c3-8804-e9afdfae83ec status: 200 OK code: 200 duration: "" @@ -5927,19 +7777,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:08:51.812825Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:33.485804Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:20 GMT + - Thu, 19 Oct 2023 16:50:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5949,7 +7799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bcc4f0a-a2fc-47bb-a92f-45ca6fecdf57 + - 4e76ae99-af1d-410d-bd5c-43c4aec06fd7 status: 200 OK code: 200 duration: "" @@ -5960,19 +7810,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=d29afef8-724f-493c-ad4c-f3e176e9a0e6&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-17T10:12:25.176733Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:41:20.856069Z","error_message":null,"id":"bec60012-8e36-409e-b48f-d00017d8d201","name":"scw-test-pool-wait-test-pool-wait-2-bec600128e","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/ba6d3b71-abd8-497e-90d6-7041ac2e6679","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:33.446076Z"},{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:46:21.965829Z","error_message":null,"id":"d5ba2835-2da7-4d71-9623-e11a52e57d3c","name":"scw-test-pool-wait-test-pool-wait-2-d5ba28352d","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/0e6d7db5-8984-4294-bf08-4f8f12c6e14b","public_ip_v4":"163.172.161.126","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:33.464550Z"}],"total_count":2}' headers: Content-Length: - - "617" + - "1322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:25 GMT + - Thu, 19 Oct 2023 16:50:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5982,7 +7832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfef7311-6127-4ab3-bb1e-7bd885c577d7 + - 8d7deaa4-9fd0-489b-9f20-4efdc6a79a99 status: 200 OK code: 200 duration: "" @@ -5993,19 +7843,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-17T10:12:25.176733Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "617" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:25 GMT + - Thu, 19 Oct 2023 16:50:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6015,7 +7865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02ff10de-c2bf-47e2-a647-f8efdefbab10 + - f52a0c57-8660-4352-9d44-ce428350943e status: 200 OK code: 200 duration: "" @@ -6026,19 +7876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=a1d75cfa-b784-4b5f-9256-29223915edbe&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:16.402282Z","error_message":null,"id":"935b7faf-7c51-49d9-a8d8-d170259c267d","name":"scw-poolconfigwait-minimal-935b7faf7c5149d9a8d","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/e7c464e7-ac73-40d2-8dc5-a2953e903733","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:25.164199Z"},{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:08:52.390496Z","error_message":null,"id":"42cfd38b-5bb1-4473-aec7-11b481a42a3f","name":"scw-poolconfigwait-minimal-42cfd38b5bb14473aec","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/4f7e0135-3abe-462e-8c38-d3e8dce4ad7f","public_ip_v4":"163.172.145.176","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:25.147430Z"}],"total_count":2}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:33.485804Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1247" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:25 GMT + - Thu, 19 Oct 2023 16:50:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6048,7 +7898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c6279d5-970a-4158-b3e8-b2f16a797ada + - e6d84392-4a0a-43aa-9573-5a9b248f0994 status: 200 OK code: 200 duration: "" @@ -6059,19 +7909,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/882a0149-d4f0-470c-8a36-650eb9f9c627 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"created_at":"2023-10-19T16:34:41.054613Z","dhcp_enabled":true,"id":"882a0149-d4f0-470c-8a36-650eb9f9c627","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:34:41.054613Z","id":"29e823e2-bb1a-4e49-b0e6-726aeafb43b6","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:34:41.054613Z"},{"created_at":"2023-10-19T16:34:41.054613Z","id":"57b44457-ecb1-48e2-86a5-5d7cf356e438","subnet":"fd63:256c:45f7:d0e7::/64","updated_at":"2023-10-19T16:34:41.054613Z"}],"tags":[],"updated_at":"2023-10-19T16:34:41.054613Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1460" + - "714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:25 GMT + - Thu, 19 Oct 2023 16:50:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6081,7 +7931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3ffeb2b-1428-40be-9fc5-129932841595 + - 5573bc72-5f28-43ef-8f9d-b852383c7581 status: 200 OK code: 200 duration: "" @@ -6092,19 +7942,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-17T10:12:25.176733Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "617" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:25 GMT + - Thu, 19 Oct 2023 16:50:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6114,7 +7964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4fd200b-8f57-4de3-87d3-8a74844b36ed + - 85b5f137-21bd-44ca-a888-56c69abe40e2 status: 200 OK code: 200 duration: "" @@ -6125,19 +7975,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaFBSRVV5VFhwUk1FNUdiMWhFVkUxNlRWUkJlRTlFUlRKTmVsRXdUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQyWnpDa05OZEVoTlNETm9lRW96Tm0xNlJtVjBlbWhXVlRKNE5WbHhlWGhvVEZsMGVtSkRjR0ZQYUhKRGIwdzVhREpQU2xoMlpraFVUbkk1SzNka1RESjVSM2dLTmxKVEwyWmtVMmQxVm5WWGFtTmhTVkZYVkVaMWFFSlJaMWxFVERGdWVIZFVXbXRvVTBoVGR6RmhORzVIUzBzNWRpdDNObU0zYlVWaGFYWlNZWElyVUFwbmJrWlpjSEU1WkZGNmRXSXJZbGRKY1ROcE1XOVZjblpKYjNKNE5XeGhZV2cxY0VObWRHSllWMFpXTkVNMVRYQlRXa00yVTNCdldFaFdPR3gzVFRWQkNsVjNSSGRzV0c1UVQyNHdTVEJMVFV3MFpFNUtVVmxaVlU5UlEzTmFSVmsyYmpoNGVUSm1iMGwyUVZWbFYwbG5UR2xNV1V0SWJrUXZWRmg2VUhGRFIyWUtlVUk1V1ZkTWEzQnhhREZTT1hrMVRrOXNOWEYwUlVSSk9GRkZNMDlyWm10cEswbFJSVVZCU0VablVYUkVRbGRUTDJ4QlkydFNkVmd2Yms5WFJsVndiQXB4WW1RMEx6QjBZbWRZVEU1TVdYQTBSbEpyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGUkdKb1JXSTBiVnBJYVVGMmVIbHhUSGcyWnpaNE5YcGxUM3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEWkdGT2VGTnBiV05pVDNsdGQza3dUVWczV25CT05XNXZWRll6U2xKT2MxRjFhamROTURkeVEyaFdORVpuYmpSM1V3cE5UMnRxYUhkcFZVcGlLMDU2YVVoMVoxWjRjSGxLT0RCeVNVOUhWMFE0VWxCTmNGSndUMlUxWTBOalZuVlJlbEI0YXpJNVZFVnRUVmt2UWxSc1pGTlhDbUo0YTNkVmJVNDVkV1JaZUcweWNsRjRWbGxtY2toTFRrZ3lhamxJTUdkak9XMHdVbFpMVld3NFRVeHZOM3BMYVhjMGNsSnZjVUk0UVcxUFdqWkRMMElLUm1OR2RUSlJjM1JwU1VOamRqazBVME5YVmpGdGMwSTFUVFF4YVhSdGFFdHJZVVp4VEd0M1IzbG5SemxLSzJZeldEaGFVVEJHUW1oVGVqQTVkak5KY3dwck4yWnVhRlpQUkRaTGNHdHVWa1kyZW1wNldGWk5VbTgxUW5wUk55OVpNVXREVVdsdWNVRkJlU3RFUjB4RFl6TkdkV28xWm5WcE5HaDNkRlZSVW1VekNqaHJhV29yUkN0bWJVeDRiMDUyYUU4M1dFd3JUMDVPYTI5UFFpODJRVmx4T0VWYVRRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly83MGRlMDY0Yi1kZDZkLTQxZDEtYjk5Ny03MDVlMTE1NmRiZjEuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGZ1VqUGRuem5pWE1GajFHN0V3MzdtZXdqY0pyNTZqS0EyVTVvRm5YQ2tMaFB4a0l5Wkk3U2diSQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1460" + - "2606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:25 GMT + - Thu, 19 Oct 2023 16:50:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6147,7 +7997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c48625a-5a05-40d5-9f1c-8ac34303549b + - af4c7e82-94e9-4d93-9746-e4d965f04556 status: 200 OK code: 200 duration: "" @@ -6158,19 +8008,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBvb2xjb25maWd3YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQySkhDa2c1TUZwYVNXaGlhamh4YUZkV2JFNVpLMUpzV2xkdVNIRlZTaTlzY1hvck1IVm9la1puUzNCTWVqa3ZkbTE2VkZoRlFVNW1OekppWVcxNGNEQjRkalFLWWxJM1VFbDViR1ZFYVZOVWFGb3hVV1F5VTFocFdsbEdLMUF2ZEdodE5sVTRORUZMY25kclRWUk5jRXRVUVVJMFIyUTFURWMyYUN0dVRXbFpkVkJ1ZWdwalVEQkVRaTlXTjIxME5IRmtSSFJIUkhvNVkzVkxSak53ZDFrM1NrWTJTV0ZNWlZveFUyc3pjamxPZWpacUwyeDJlRFF3UTBkWGVVaElMMkp5VFhsTkNtaFVabFEyZEdWMWJIRTNSVGg1ZURGdGFVcHRZM1ZrWlN0NlVFdFNRMUJVV1d0MGJUVTFkbWR1SzNwTE9YTmxVR1JoTnk5RU0zcERUbmsyYldWS1VtSUtZMWg2Y2pKb2JqUndXRXQ2UVN0MVMzQkRRM1JSYjFoeFMyMTJUbHAxWVRVME9TOHpOelp2WVRka1JXWnlhRVozV1dVelRYRkxNVk0zVFc0d05rWnlaZ3A1TmxWV2JXNWlVRTl3YVVodU1uUktVRnBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTUhGVk5VeDVVVkU1ZGpWRVpIaE9TV1Y0Y1VKa1NqUmllbE5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDVVhBd2QwZERkbGR1SzFKMU5FTkxVa2hxTUVSWVQyODVhM0JxUW13ek1HSkhjV0ZtYlZKYVQyRlNUR3BWYUhCTlpBcG1kRmc0UnpOM1lXODVaRU5aTm1SdlUwcFZialZoTUZWYWIyOHlaa2NyWVZodE1rTldNVXhrY2tjeGFrNXJjVWxOU2xKUFRrdDZXbVJ2TVVaVWFVTndDbGR6YzNSRVIxQnlRa3hLZFN0aWIzRktRekZaV0hWc1FpODJSalJNTWpWaGMyMXRUVTlUUTI1aGVWUnNSQ3RrY1hWRFZFUm9WbmhsTUZKUFNGZEZTVGtLY21WS2FFVlpORFJTVTBsR05sUkpMMjl4V0VKRFVFOVFTalpQZHpoQmQyRk9RMDVLTVZCS2Jpc3hZakE0Um5kblRrOWlNakJLTDFWNFduSjBhWHB2YmdwaFVWSjRNM1pqT0dkNVJURXdkRkJ0TkdNeFlYaERablV4TUZOcFJtc3paVEpaYjJ0TVIxTTBkbGhyVkZJclZrZzVabGt3WVhCbmVIZHpSbGRTTDFCTkNsWXlUWFZEYm0xVFkwcHRLMjgwWVcwcmVHSk1SMlpoSzBVMGRVdFhPVmd2ZVRSM1VBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4MjQ1Ni0wMjBlLTQyZjYtOTg4MC05Yzg1MzAzZTI3NzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AcG9vbGNvbmZpZ3dhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInBvb2xjb25maWd3YWl0IgogICAgdXNlcjogcG9vbGNvbmZpZ3dhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBwb29sY29uZmlnd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHBvb2xjb25maWd3YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ0FIY1drRUJNT0FoUHEzaXpaeWwzeDQ5WFBjQTFxWU5NcUdlWFJ4cGRVbDNzdzV6c1pKazNnNQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:33.485804Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "2606" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:26 GMT + - Thu, 19 Oct 2023 16:50:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6180,7 +8030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4de59cc2-b828-4e61-b599-2eb24a9df238 + - a94af5d3-f0fc-4e3e-8ecb-7c8a37f40bce status: 200 OK code: 200 duration: "" @@ -6191,19 +8041,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:26 GMT + - Thu, 19 Oct 2023 16:50:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6213,7 +8063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4429538a-3228-4993-93ea-0bec280c0c8d + - 0ce61b28-db46-409c-a6d8-5897af66cc8d status: 200 OK code: 200 duration: "" @@ -6224,19 +8074,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=34a36b69-f6e4-4279-8f74-c49a6213083c&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-17T10:12:25.176733Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:36:27.777812Z","error_message":null,"id":"b0a9dc5d-be0e-41bf-b5ce-e13680526495","name":"scw-test-pool-wait-test-pool-wait-b0a9dc5dbe0e","pool_id":"34a36b69-f6e4-4279-8f74-c49a6213083c","provider_id":"scaleway://instance/fr-par-1/456dcdc2-0d49-445e-ba9c-5a4039a43c73","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:33.413263Z"}],"total_count":1}' headers: Content-Length: - - "617" + - "689" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:26 GMT + - Thu, 19 Oct 2023 16:50:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6246,7 +8096,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a552874-5d92-4d11-952e-8e75a037b7a9 + - 0fd5f45b-3a1d-4fa6-97b4-d8aae5140688 status: 200 OK code: 200 duration: "" @@ -6257,19 +8107,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=a1d75cfa-b784-4b5f-9256-29223915edbe&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=d29afef8-724f-493c-ad4c-f3e176e9a0e6&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:16.402282Z","error_message":null,"id":"935b7faf-7c51-49d9-a8d8-d170259c267d","name":"scw-poolconfigwait-minimal-935b7faf7c5149d9a8d","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/e7c464e7-ac73-40d2-8dc5-a2953e903733","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:25.164199Z"},{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:08:52.390496Z","error_message":null,"id":"42cfd38b-5bb1-4473-aec7-11b481a42a3f","name":"scw-poolconfigwait-minimal-42cfd38b5bb14473aec","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/4f7e0135-3abe-462e-8c38-d3e8dce4ad7f","public_ip_v4":"163.172.145.176","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:25.147430Z"}],"total_count":2}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:41:20.856069Z","error_message":null,"id":"bec60012-8e36-409e-b48f-d00017d8d201","name":"scw-test-pool-wait-test-pool-wait-2-bec600128e","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/ba6d3b71-abd8-497e-90d6-7041ac2e6679","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:33.446076Z"},{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:46:21.965829Z","error_message":null,"id":"d5ba2835-2da7-4d71-9623-e11a52e57d3c","name":"scw-test-pool-wait-test-pool-wait-2-d5ba28352d","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/0e6d7db5-8984-4294-bf08-4f8f12c6e14b","public_ip_v4":"163.172.161.126","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:33.464550Z"}],"total_count":2}' headers: Content-Length: - - "1247" + - "1322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:26 GMT + - Thu, 19 Oct 2023 16:50:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6279,7 +8129,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8d194e6-9b42-417c-951f-0fa0fe0c8cbe + - fed17bb2-47ac-40dd-9683-cface5a2f926 status: 200 OK code: 200 duration: "" @@ -6290,19 +8140,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=371a76d7-faca-46d8-a698-c079a89d2d59&status=unknown + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/882a0149-d4f0-470c-8a36-650eb9f9c627 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:32.142675Z","error_message":null,"id":"6f99bb99-10e8-487f-b527-eaf526aaa91d","name":"scw-poolconfigwait-default-6f99bb9910e8487fb52","pool_id":"371a76d7-faca-46d8-a698-c079a89d2d59","provider_id":"scaleway://instance/fr-par-1/56c93cbb-e9a7-445c-a706-2586b8775d92","public_ip_v4":"163.172.131.97","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:25.109195Z"}],"total_count":1}' + body: '{"created_at":"2023-10-19T16:34:41.054613Z","dhcp_enabled":true,"id":"882a0149-d4f0-470c-8a36-650eb9f9c627","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:34:41.054613Z","id":"29e823e2-bb1a-4e49-b0e6-726aeafb43b6","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:34:41.054613Z"},{"created_at":"2023-10-19T16:34:41.054613Z","id":"57b44457-ecb1-48e2-86a5-5d7cf356e438","subnet":"fd63:256c:45f7:d0e7::/64","updated_at":"2023-10-19T16:34:41.054613Z"}],"tags":[],"updated_at":"2023-10-19T16:34:41.054613Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "652" + - "714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:26 GMT + - Thu, 19 Oct 2023 16:50:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6312,7 +8162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0cffc99-8a49-40d2-8ce4-3dc1d61371f2 + - d757792d-6562-49ec-a81a-04d37687c6cb status: 200 OK code: 200 duration: "" @@ -6323,19 +8173,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1460" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:26 GMT + - Thu, 19 Oct 2023 16:50:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6345,7 +8195,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 883231e4-aba2-41a7-84bb-030d721fb42d + - 5c6be01c-a1f8-43a3-8843-098da4ecf98d status: 200 OK code: 200 duration: "" @@ -6356,10 +8206,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBvb2xjb25maWd3YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQySkhDa2c1TUZwYVNXaGlhamh4YUZkV2JFNVpLMUpzV2xkdVNIRlZTaTlzY1hvck1IVm9la1puUzNCTWVqa3ZkbTE2VkZoRlFVNW1OekppWVcxNGNEQjRkalFLWWxJM1VFbDViR1ZFYVZOVWFGb3hVV1F5VTFocFdsbEdLMUF2ZEdodE5sVTRORUZMY25kclRWUk5jRXRVUVVJMFIyUTFURWMyYUN0dVRXbFpkVkJ1ZWdwalVEQkVRaTlXTjIxME5IRmtSSFJIUkhvNVkzVkxSak53ZDFrM1NrWTJTV0ZNWlZveFUyc3pjamxPZWpacUwyeDJlRFF3UTBkWGVVaElMMkp5VFhsTkNtaFVabFEyZEdWMWJIRTNSVGg1ZURGdGFVcHRZM1ZrWlN0NlVFdFNRMUJVV1d0MGJUVTFkbWR1SzNwTE9YTmxVR1JoTnk5RU0zcERUbmsyYldWS1VtSUtZMWg2Y2pKb2JqUndXRXQ2UVN0MVMzQkRRM1JSYjFoeFMyMTJUbHAxWVRVME9TOHpOelp2WVRka1JXWnlhRVozV1dVelRYRkxNVk0zVFc0d05rWnlaZ3A1TmxWV2JXNWlVRTl3YVVodU1uUktVRnBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTUhGVk5VeDVVVkU1ZGpWRVpIaE9TV1Y0Y1VKa1NqUmllbE5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDVVhBd2QwZERkbGR1SzFKMU5FTkxVa2hxTUVSWVQyODVhM0JxUW13ek1HSkhjV0ZtYlZKYVQyRlNUR3BWYUhCTlpBcG1kRmc0UnpOM1lXODVaRU5aTm1SdlUwcFZialZoTUZWYWIyOHlaa2NyWVZodE1rTldNVXhrY2tjeGFrNXJjVWxOU2xKUFRrdDZXbVJ2TVVaVWFVTndDbGR6YzNSRVIxQnlRa3hLZFN0aWIzRktRekZaV0hWc1FpODJSalJNTWpWaGMyMXRUVTlUUTI1aGVWUnNSQ3RrY1hWRFZFUm9WbmhsTUZKUFNGZEZTVGtLY21WS2FFVlpORFJTVTBsR05sUkpMMjl4V0VKRFVFOVFTalpQZHpoQmQyRk9RMDVLTVZCS2Jpc3hZakE0Um5kblRrOWlNakJLTDFWNFduSjBhWHB2YmdwaFVWSjRNM1pqT0dkNVJURXdkRkJ0TkdNeFlYaERablV4TUZOcFJtc3paVEpaYjJ0TVIxTTBkbGhyVkZJclZrZzVabGt3WVhCbmVIZHpSbGRTTDFCTkNsWXlUWFZEYm0xVFkwcHRLMjgwWVcwcmVHSk1SMlpoSzBVMGRVdFhPVmd2ZVRSM1VBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4MjQ1Ni0wMjBlLTQyZjYtOTg4MC05Yzg1MzAzZTI3NzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AcG9vbGNvbmZpZ3dhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInBvb2xjb25maWd3YWl0IgogICAgdXNlcjogcG9vbGNvbmZpZ3dhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBwb29sY29uZmlnd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHBvb2xjb25maWd3YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ0FIY1drRUJNT0FoUHEzaXpaeWwzeDQ5WFBjQTFxWU5NcUdlWFJ4cGRVbDNzdzV6c1pKazNnNQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaFBSRVV5VFhwUk1FNUdiMWhFVkUxNlRWUkJlRTlFUlRKTmVsRXdUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQyWnpDa05OZEVoTlNETm9lRW96Tm0xNlJtVjBlbWhXVlRKNE5WbHhlWGhvVEZsMGVtSkRjR0ZQYUhKRGIwdzVhREpQU2xoMlpraFVUbkk1SzNka1RESjVSM2dLTmxKVEwyWmtVMmQxVm5WWGFtTmhTVkZYVkVaMWFFSlJaMWxFVERGdWVIZFVXbXRvVTBoVGR6RmhORzVIUzBzNWRpdDNObU0zYlVWaGFYWlNZWElyVUFwbmJrWlpjSEU1WkZGNmRXSXJZbGRKY1ROcE1XOVZjblpKYjNKNE5XeGhZV2cxY0VObWRHSllWMFpXTkVNMVRYQlRXa00yVTNCdldFaFdPR3gzVFRWQkNsVjNSSGRzV0c1UVQyNHdTVEJMVFV3MFpFNUtVVmxaVlU5UlEzTmFSVmsyYmpoNGVUSm1iMGwyUVZWbFYwbG5UR2xNV1V0SWJrUXZWRmg2VUhGRFIyWUtlVUk1V1ZkTWEzQnhhREZTT1hrMVRrOXNOWEYwUlVSSk9GRkZNMDlyWm10cEswbFJSVVZCU0VablVYUkVRbGRUTDJ4QlkydFNkVmd2Yms5WFJsVndiQXB4WW1RMEx6QjBZbWRZVEU1TVdYQTBSbEpyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGUkdKb1JXSTBiVnBJYVVGMmVIbHhUSGcyWnpaNE5YcGxUM3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEWkdGT2VGTnBiV05pVDNsdGQza3dUVWczV25CT05XNXZWRll6U2xKT2MxRjFhamROTURkeVEyaFdORVpuYmpSM1V3cE5UMnRxYUhkcFZVcGlLMDU2YVVoMVoxWjRjSGxLT0RCeVNVOUhWMFE0VWxCTmNGSndUMlUxWTBOalZuVlJlbEI0YXpJNVZFVnRUVmt2UWxSc1pGTlhDbUo0YTNkVmJVNDVkV1JaZUcweWNsRjRWbGxtY2toTFRrZ3lhamxJTUdkak9XMHdVbFpMVld3NFRVeHZOM3BMYVhjMGNsSnZjVUk0UVcxUFdqWkRMMElLUm1OR2RUSlJjM1JwU1VOamRqazBVME5YVmpGdGMwSTFUVFF4YVhSdGFFdHJZVVp4VEd0M1IzbG5SemxLSzJZeldEaGFVVEJHUW1oVGVqQTVkak5KY3dwck4yWnVhRlpQUkRaTGNHdHVWa1kyZW1wNldGWk5VbTgxUW5wUk55OVpNVXREVVdsdWNVRkJlU3RFUjB4RFl6TkdkV28xWm5WcE5HaDNkRlZSVW1VekNqaHJhV29yUkN0bWJVeDRiMDUyYUU4M1dFd3JUMDVPYTI5UFFpODJRVmx4T0VWYVRRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly83MGRlMDY0Yi1kZDZkLTQxZDEtYjk5Ny03MDVlMTE1NmRiZjEuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGZ1VqUGRuem5pWE1GajFHN0V3MzdtZXdqY0pyNTZqS0EyVTVvRm5YQ2tMaFB4a0l5Wkk3U2diSQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - "2606" @@ -6368,7 +8218,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:26 GMT + - Thu, 19 Oct 2023 16:50:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6378,7 +8228,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca9d9de2-6689-4f7b-bd25-f2a2ce30e488 + - 1fa5b301-340d-4610-b7e8-2370de77ff23 status: 200 OK code: 200 duration: "" @@ -6389,19 +8239,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":2,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:33.485804Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:27 GMT + - Thu, 19 Oct 2023 16:50:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6411,7 +8261,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2d0b980-1209-40a8-8e2d-b35085e2296a + - 1118a832-18ac-47f7-8404-a3abc13a4ae1 status: 200 OK code: 200 duration: "" @@ -6422,19 +8272,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":2,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":2,"status":"ready","tags":[],"updated_at":"2023-10-17T10:12:25.176733Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:27 GMT + - Thu, 19 Oct 2023 16:50:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6444,7 +8294,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06ccc7ca-02d5-41d4-925a-2155fe51b7d6 + - a8c44388-e608-4560-8a12-b1281f7a57af status: 200 OK code: 200 duration: "" @@ -6455,19 +8305,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=371a76d7-faca-46d8-a698-c079a89d2d59&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=d29afef8-724f-493c-ad4c-f3e176e9a0e6&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:32.142675Z","error_message":null,"id":"6f99bb99-10e8-487f-b527-eaf526aaa91d","name":"scw-poolconfigwait-default-6f99bb9910e8487fb52","pool_id":"371a76d7-faca-46d8-a698-c079a89d2d59","provider_id":"scaleway://instance/fr-par-1/56c93cbb-e9a7-445c-a706-2586b8775d92","public_ip_v4":"163.172.131.97","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:25.109195Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:41:20.856069Z","error_message":null,"id":"bec60012-8e36-409e-b48f-d00017d8d201","name":"scw-test-pool-wait-test-pool-wait-2-bec600128e","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/ba6d3b71-abd8-497e-90d6-7041ac2e6679","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:33.446076Z"},{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:46:21.965829Z","error_message":null,"id":"d5ba2835-2da7-4d71-9623-e11a52e57d3c","name":"scw-test-pool-wait-test-pool-wait-2-d5ba28352d","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/0e6d7db5-8984-4294-bf08-4f8f12c6e14b","public_ip_v4":"163.172.161.126","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:33.464550Z"}],"total_count":2}' headers: Content-Length: - - "652" + - "1322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:27 GMT + - Thu, 19 Oct 2023 16:50:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6477,7 +8327,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cf9a49e-2bcc-4764-b42b-1e5d0b80e977 + - 8bc3ed26-b576-481b-b13a-fc99c2eb7a13 status: 200 OK code: 200 duration: "" @@ -6488,19 +8338,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=a1d75cfa-b784-4b5f-9256-29223915edbe&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=34a36b69-f6e4-4279-8f74-c49a6213083c&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:16.402282Z","error_message":null,"id":"935b7faf-7c51-49d9-a8d8-d170259c267d","name":"scw-poolconfigwait-minimal-935b7faf7c5149d9a8d","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/e7c464e7-ac73-40d2-8dc5-a2953e903733","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:25.164199Z"},{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:08:52.390496Z","error_message":null,"id":"42cfd38b-5bb1-4473-aec7-11b481a42a3f","name":"scw-poolconfigwait-minimal-42cfd38b5bb14473aec","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/4f7e0135-3abe-462e-8c38-d3e8dce4ad7f","public_ip_v4":"163.172.145.176","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:25.147430Z"}],"total_count":2}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:36:27.777812Z","error_message":null,"id":"b0a9dc5d-be0e-41bf-b5ce-e13680526495","name":"scw-test-pool-wait-test-pool-wait-b0a9dc5dbe0e","pool_id":"34a36b69-f6e4-4279-8f74-c49a6213083c","provider_id":"scaleway://instance/fr-par-1/456dcdc2-0d49-445e-ba9c-5a4039a43c73","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:33.413263Z"}],"total_count":1}' headers: Content-Length: - - "1247" + - "689" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:27 GMT + - Thu, 19 Oct 2023 16:50:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6510,7 +8360,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b361d3dd-005e-45ce-9435-a043c0d68ae8 + - cd648544-08d9-4237-983b-821de6342469 status: 200 OK code: 200 duration: "" @@ -6523,19 +8373,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: PATCH response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:12:27.861251650Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:50:36.902301613Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "631" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:50:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 73cae1fa-fc6c-441c-9d95-9e47cdc1d3b1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-19T16:50:36.902302Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "622" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:28 GMT + - Thu, 19 Oct 2023 16:50:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6545,7 +8428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3a642c4-3202-4097-afc6-7d30219600d8 + - c3e06f97-2ace-42c9-bddf-3b3abc40d86e status: 200 OK code: 200 duration: "" @@ -6556,19 +8439,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":[],"updated_at":"2023-10-17T10:12:27.861252Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:38.103012Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "619" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:28 GMT + - Thu, 19 Oct 2023 16:50:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6578,7 +8461,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e762a682-b3eb-4d3c-9ceb-5f124277f5f5 + - 180704d2-e71a-4397-b20d-0b95a9f37e15 status: 200 OK code: 200 duration: "" @@ -6589,19 +8472,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:12:29.120963Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:38.103012Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:33 GMT + - Thu, 19 Oct 2023 16:50:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6611,7 +8494,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11ccac59-c840-45be-8560-c16a4bf15f6e + - 730834f0-be24-406a-8e15-72c940a5efa5 status: 200 OK code: 200 duration: "" @@ -6622,19 +8505,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=d29afef8-724f-493c-ad4c-f3e176e9a0e6&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:12:29.120963Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:41:20.856069Z","error_message":null,"id":"bec60012-8e36-409e-b48f-d00017d8d201","name":"scw-test-pool-wait-test-pool-wait-2-bec600128e","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/ba6d3b71-abd8-497e-90d6-7041ac2e6679","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-10-19T16:50:37.394144Z"},{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:46:21.965829Z","error_message":null,"id":"d5ba2835-2da7-4d71-9623-e11a52e57d3c","name":"scw-test-pool-wait-test-pool-wait-2-d5ba28352d","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/0e6d7db5-8984-4294-bf08-4f8f12c6e14b","public_ip_v4":"163.172.161.126","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:38.006085Z"}],"total_count":2}' headers: Content-Length: - - "617" + - "1325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:33 GMT + - Thu, 19 Oct 2023 16:50:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6644,7 +8527,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 303ec562-5828-486d-9d26-702966f1b91b + - c44a6732-9565-4d52-b807-b9c4d27c6e11 status: 200 OK code: 200 duration: "" @@ -6655,19 +8538,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=a1d75cfa-b784-4b5f-9256-29223915edbe&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:16.402282Z","error_message":null,"id":"935b7faf-7c51-49d9-a8d8-d170259c267d","name":"scw-poolconfigwait-minimal-935b7faf7c5149d9a8d","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/e7c464e7-ac73-40d2-8dc5-a2953e903733","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:29.046187Z"},{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:08:52.390496Z","error_message":null,"id":"42cfd38b-5bb1-4473-aec7-11b481a42a3f","name":"scw-poolconfigwait-minimal-42cfd38b5bb14473aec","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/4f7e0135-3abe-462e-8c38-d3e8dce4ad7f","public_ip_v4":"163.172.145.176","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-10-17T10:12:28.381793Z"}],"total_count":2}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1250" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:33 GMT + - Thu, 19 Oct 2023 16:50:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6677,7 +8560,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e897f7b8-b038-4b87-a6e1-4d15d051ee3b + - aa2a597f-f35b-4ed3-b8e1-a8ed513a3ab1 status: 200 OK code: 200 duration: "" @@ -6688,19 +8571,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:38.103012Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1460" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:33 GMT + - Thu, 19 Oct 2023 16:50:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6710,7 +8593,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5ba5f45-6842-4983-9a16-793438633310 + - 3f640cc3-81c0-43c7-b120-2c0c7e587826 status: 200 OK code: 200 duration: "" @@ -6721,19 +8604,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/882a0149-d4f0-470c-8a36-650eb9f9c627 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:12:29.120963Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-19T16:34:41.054613Z","dhcp_enabled":true,"id":"882a0149-d4f0-470c-8a36-650eb9f9c627","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:34:41.054613Z","id":"29e823e2-bb1a-4e49-b0e6-726aeafb43b6","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:34:41.054613Z"},{"created_at":"2023-10-19T16:34:41.054613Z","id":"57b44457-ecb1-48e2-86a5-5d7cf356e438","subnet":"fd63:256c:45f7:d0e7::/64","updated_at":"2023-10-19T16:34:41.054613Z"}],"tags":[],"updated_at":"2023-10-19T16:34:41.054613Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "617" + - "714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:33 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6743,7 +8626,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b75d0d2-7ce6-4e1d-bd89-e4ce6b7a464c + - 83f0c307-f657-4ae3-8a60-62817c40ac2c status: 200 OK code: 200 duration: "" @@ -6754,19 +8637,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1460" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6776,7 +8659,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b74dfa44-cb23-42f5-84e6-f5c04e1d664a + - f3bf821a-688a-43bd-ac57-5d141e7d3f76 status: 200 OK code: 200 duration: "" @@ -6787,10 +8670,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBvb2xjb25maWd3YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQySkhDa2c1TUZwYVNXaGlhamh4YUZkV2JFNVpLMUpzV2xkdVNIRlZTaTlzY1hvck1IVm9la1puUzNCTWVqa3ZkbTE2VkZoRlFVNW1OekppWVcxNGNEQjRkalFLWWxJM1VFbDViR1ZFYVZOVWFGb3hVV1F5VTFocFdsbEdLMUF2ZEdodE5sVTRORUZMY25kclRWUk5jRXRVUVVJMFIyUTFURWMyYUN0dVRXbFpkVkJ1ZWdwalVEQkVRaTlXTjIxME5IRmtSSFJIUkhvNVkzVkxSak53ZDFrM1NrWTJTV0ZNWlZveFUyc3pjamxPZWpacUwyeDJlRFF3UTBkWGVVaElMMkp5VFhsTkNtaFVabFEyZEdWMWJIRTNSVGg1ZURGdGFVcHRZM1ZrWlN0NlVFdFNRMUJVV1d0MGJUVTFkbWR1SzNwTE9YTmxVR1JoTnk5RU0zcERUbmsyYldWS1VtSUtZMWg2Y2pKb2JqUndXRXQ2UVN0MVMzQkRRM1JSYjFoeFMyMTJUbHAxWVRVME9TOHpOelp2WVRka1JXWnlhRVozV1dVelRYRkxNVk0zVFc0d05rWnlaZ3A1TmxWV2JXNWlVRTl3YVVodU1uUktVRnBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTUhGVk5VeDVVVkU1ZGpWRVpIaE9TV1Y0Y1VKa1NqUmllbE5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDVVhBd2QwZERkbGR1SzFKMU5FTkxVa2hxTUVSWVQyODVhM0JxUW13ek1HSkhjV0ZtYlZKYVQyRlNUR3BWYUhCTlpBcG1kRmc0UnpOM1lXODVaRU5aTm1SdlUwcFZialZoTUZWYWIyOHlaa2NyWVZodE1rTldNVXhrY2tjeGFrNXJjVWxOU2xKUFRrdDZXbVJ2TVVaVWFVTndDbGR6YzNSRVIxQnlRa3hLZFN0aWIzRktRekZaV0hWc1FpODJSalJNTWpWaGMyMXRUVTlUUTI1aGVWUnNSQ3RrY1hWRFZFUm9WbmhsTUZKUFNGZEZTVGtLY21WS2FFVlpORFJTVTBsR05sUkpMMjl4V0VKRFVFOVFTalpQZHpoQmQyRk9RMDVLTVZCS2Jpc3hZakE0Um5kblRrOWlNakJLTDFWNFduSjBhWHB2YmdwaFVWSjRNM1pqT0dkNVJURXdkRkJ0TkdNeFlYaERablV4TUZOcFJtc3paVEpaYjJ0TVIxTTBkbGhyVkZJclZrZzVabGt3WVhCbmVIZHpSbGRTTDFCTkNsWXlUWFZEYm0xVFkwcHRLMjgwWVcwcmVHSk1SMlpoSzBVMGRVdFhPVmd2ZVRSM1VBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4MjQ1Ni0wMjBlLTQyZjYtOTg4MC05Yzg1MzAzZTI3NzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AcG9vbGNvbmZpZ3dhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInBvb2xjb25maWd3YWl0IgogICAgdXNlcjogcG9vbGNvbmZpZ3dhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBwb29sY29uZmlnd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHBvb2xjb25maWd3YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ0FIY1drRUJNT0FoUHEzaXpaeWwzeDQ5WFBjQTFxWU5NcUdlWFJ4cGRVbDNzdzV6c1pKazNnNQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaFBSRVV5VFhwUk1FNUdiMWhFVkUxNlRWUkJlRTlFUlRKTmVsRXdUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQyWnpDa05OZEVoTlNETm9lRW96Tm0xNlJtVjBlbWhXVlRKNE5WbHhlWGhvVEZsMGVtSkRjR0ZQYUhKRGIwdzVhREpQU2xoMlpraFVUbkk1SzNka1RESjVSM2dLTmxKVEwyWmtVMmQxVm5WWGFtTmhTVkZYVkVaMWFFSlJaMWxFVERGdWVIZFVXbXRvVTBoVGR6RmhORzVIUzBzNWRpdDNObU0zYlVWaGFYWlNZWElyVUFwbmJrWlpjSEU1WkZGNmRXSXJZbGRKY1ROcE1XOVZjblpKYjNKNE5XeGhZV2cxY0VObWRHSllWMFpXTkVNMVRYQlRXa00yVTNCdldFaFdPR3gzVFRWQkNsVjNSSGRzV0c1UVQyNHdTVEJMVFV3MFpFNUtVVmxaVlU5UlEzTmFSVmsyYmpoNGVUSm1iMGwyUVZWbFYwbG5UR2xNV1V0SWJrUXZWRmg2VUhGRFIyWUtlVUk1V1ZkTWEzQnhhREZTT1hrMVRrOXNOWEYwUlVSSk9GRkZNMDlyWm10cEswbFJSVVZCU0VablVYUkVRbGRUTDJ4QlkydFNkVmd2Yms5WFJsVndiQXB4WW1RMEx6QjBZbWRZVEU1TVdYQTBSbEpyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGUkdKb1JXSTBiVnBJYVVGMmVIbHhUSGcyWnpaNE5YcGxUM3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEWkdGT2VGTnBiV05pVDNsdGQza3dUVWczV25CT05XNXZWRll6U2xKT2MxRjFhamROTURkeVEyaFdORVpuYmpSM1V3cE5UMnRxYUhkcFZVcGlLMDU2YVVoMVoxWjRjSGxLT0RCeVNVOUhWMFE0VWxCTmNGSndUMlUxWTBOalZuVlJlbEI0YXpJNVZFVnRUVmt2UWxSc1pGTlhDbUo0YTNkVmJVNDVkV1JaZUcweWNsRjRWbGxtY2toTFRrZ3lhamxJTUdkak9XMHdVbFpMVld3NFRVeHZOM3BMYVhjMGNsSnZjVUk0UVcxUFdqWkRMMElLUm1OR2RUSlJjM1JwU1VOamRqazBVME5YVmpGdGMwSTFUVFF4YVhSdGFFdHJZVVp4VEd0M1IzbG5SemxLSzJZeldEaGFVVEJHUW1oVGVqQTVkak5KY3dwck4yWnVhRlpQUkRaTGNHdHVWa1kyZW1wNldGWk5VbTgxUW5wUk55OVpNVXREVVdsdWNVRkJlU3RFUjB4RFl6TkdkV28xWm5WcE5HaDNkRlZSVW1VekNqaHJhV29yUkN0bWJVeDRiMDUyYUU4M1dFd3JUMDVPYTI5UFFpODJRVmx4T0VWYVRRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly83MGRlMDY0Yi1kZDZkLTQxZDEtYjk5Ny03MDVlMTE1NmRiZjEuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGZ1VqUGRuem5pWE1GajFHN0V3MzdtZXdqY0pyNTZqS0EyVTVvRm5YQ2tMaFB4a0l5Wkk3U2diSQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - "2606" @@ -6799,7 +8682,40 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ce04ea51-e7de-4ad3-be71-192d8d219a3e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 + method: GET + response: + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:38.103012Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "626" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6809,7 +8725,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ac40af3-0c0a-4d21-ac3d-939b4364491b + - 4f48002e-29d5-4cde-8766-13a0c9030acd status: 200 OK code: 200 duration: "" @@ -6820,19 +8736,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:12:29.120963Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6842,7 +8758,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33d21b4f-a998-4720-8d96-6a4a04cdda0f + - 0ee6cfa9-0feb-48be-b09e-b778b04f5983 status: 200 OK code: 200 duration: "" @@ -6853,19 +8769,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=d29afef8-724f-493c-ad4c-f3e176e9a0e6&status=unknown method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:41:20.856069Z","error_message":null,"id":"bec60012-8e36-409e-b48f-d00017d8d201","name":"scw-test-pool-wait-test-pool-wait-2-bec600128e","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/ba6d3b71-abd8-497e-90d6-7041ac2e6679","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-10-19T16:50:37.394144Z"},{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:46:21.965829Z","error_message":null,"id":"d5ba2835-2da7-4d71-9623-e11a52e57d3c","name":"scw-test-pool-wait-test-pool-wait-2-d5ba28352d","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/0e6d7db5-8984-4294-bf08-4f8f12c6e14b","public_ip_v4":"163.172.161.126","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:38.006085Z"}],"total_count":2}' headers: Content-Length: - - "617" + - "1325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6875,7 +8791,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd991b5a-f61a-4516-abc4-4b5cd435ec14 + - 4ff262aa-4381-40b4-8f2c-f1d6f94fab7d status: 200 OK code: 200 duration: "" @@ -6886,19 +8802,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=371a76d7-faca-46d8-a698-c079a89d2d59&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=34a36b69-f6e4-4279-8f74-c49a6213083c&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:32.142675Z","error_message":null,"id":"6f99bb99-10e8-487f-b527-eaf526aaa91d","name":"scw-poolconfigwait-default-6f99bb9910e8487fb52","pool_id":"371a76d7-faca-46d8-a698-c079a89d2d59","provider_id":"scaleway://instance/fr-par-1/56c93cbb-e9a7-445c-a706-2586b8775d92","public_ip_v4":"163.172.131.97","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:28.993380Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:36:27.777812Z","error_message":null,"id":"b0a9dc5d-be0e-41bf-b5ce-e13680526495","name":"scw-test-pool-wait-test-pool-wait-b0a9dc5dbe0e","pool_id":"34a36b69-f6e4-4279-8f74-c49a6213083c","provider_id":"scaleway://instance/fr-par-1/456dcdc2-0d49-445e-ba9c-5a4039a43c73","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:37.957878Z"}],"total_count":1}' headers: Content-Length: - - "652" + - "689" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6908,7 +8824,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8891b00e-c2cf-41fa-b335-3e5cbfffed75 + - 62ebca11-effd-4f1e-acfe-56c2fca35e41 status: 200 OK code: 200 duration: "" @@ -6919,19 +8835,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=a1d75cfa-b784-4b5f-9256-29223915edbe&status=unknown + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/882a0149-d4f0-470c-8a36-650eb9f9c627 method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:16.402282Z","error_message":null,"id":"935b7faf-7c51-49d9-a8d8-d170259c267d","name":"scw-poolconfigwait-minimal-935b7faf7c5149d9a8d","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/e7c464e7-ac73-40d2-8dc5-a2953e903733","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:29.046187Z"},{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:08:52.390496Z","error_message":null,"id":"42cfd38b-5bb1-4473-aec7-11b481a42a3f","name":"scw-poolconfigwait-minimal-42cfd38b5bb14473aec","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/4f7e0135-3abe-462e-8c38-d3e8dce4ad7f","public_ip_v4":"163.172.145.176","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-10-17T10:12:28.381793Z"}],"total_count":2}' + body: '{"created_at":"2023-10-19T16:34:41.054613Z","dhcp_enabled":true,"id":"882a0149-d4f0-470c-8a36-650eb9f9c627","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:34:41.054613Z","id":"29e823e2-bb1a-4e49-b0e6-726aeafb43b6","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:34:41.054613Z"},{"created_at":"2023-10-19T16:34:41.054613Z","id":"57b44457-ecb1-48e2-86a5-5d7cf356e438","subnet":"fd63:256c:45f7:d0e7::/64","updated_at":"2023-10-19T16:34:41.054613Z"}],"tags":[],"updated_at":"2023-10-19T16:34:41.054613Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1250" + - "714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6941,7 +8857,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26de007f-d6eb-422b-917c-0e4082870893 + - 8770af39-d3c6-4f68-b01e-574d1bc20b0f status: 200 OK code: 200 duration: "" @@ -6952,19 +8868,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:50:38.103012Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "1460" + - "626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6974,7 +8890,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70c1ebcc-da8f-455d-9b93-ee775b3b7fda + - b14d516a-892f-42c4-a7fa-7e9298b19775 status: 200 OK code: 200 duration: "" @@ -6985,19 +8901,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:12:29.120963Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "617" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7007,7 +8923,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54c970a9-4eee-4b6f-8eab-ccc41fcbecfd + - 5d6329a2-5d89-4299-bfdd-cd7b44cd1bc4 status: 200 OK code: 200 duration: "" @@ -7018,19 +8934,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=a1d75cfa-b784-4b5f-9256-29223915edbe&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=d29afef8-724f-493c-ad4c-f3e176e9a0e6&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:06:16.402282Z","error_message":null,"id":"935b7faf-7c51-49d9-a8d8-d170259c267d","name":"scw-poolconfigwait-minimal-935b7faf7c5149d9a8d","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/e7c464e7-ac73-40d2-8dc5-a2953e903733","public_ip_v4":"51.15.246.145","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:29.046187Z"},{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:08:52.390496Z","error_message":null,"id":"42cfd38b-5bb1-4473-aec7-11b481a42a3f","name":"scw-poolconfigwait-minimal-42cfd38b5bb14473aec","pool_id":"a1d75cfa-b784-4b5f-9256-29223915edbe","provider_id":"scaleway://instance/fr-par-1/4f7e0135-3abe-462e-8c38-d3e8dce4ad7f","public_ip_v4":"163.172.145.176","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-10-17T10:12:28.381793Z"}],"total_count":2}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:41:20.856069Z","error_message":null,"id":"bec60012-8e36-409e-b48f-d00017d8d201","name":"scw-test-pool-wait-test-pool-wait-2-bec600128e","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/ba6d3b71-abd8-497e-90d6-7041ac2e6679","public_ip_v4":"163.172.141.90","public_ip_v6":null,"region":"fr-par","status":"deleting","updated_at":"2023-10-19T16:50:37.394144Z"},{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:46:21.965829Z","error_message":null,"id":"d5ba2835-2da7-4d71-9623-e11a52e57d3c","name":"scw-test-pool-wait-test-pool-wait-2-d5ba28352d","pool_id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","provider_id":"scaleway://instance/fr-par-1/0e6d7db5-8984-4294-bf08-4f8f12c6e14b","public_ip_v4":"163.172.161.126","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:38.006085Z"}],"total_count":2}' headers: Content-Length: - - "1250" + - "1325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7040,7 +8956,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1adf1ef-81b0-49c6-ad7e-57b86c7d40c8 + - 2d727c22-9c06-4a45-894b-bb134198dbdc status: 200 OK code: 200 duration: "" @@ -7051,10 +8967,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBvb2xjb25maWd3YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQySkhDa2c1TUZwYVNXaGlhamh4YUZkV2JFNVpLMUpzV2xkdVNIRlZTaTlzY1hvck1IVm9la1puUzNCTWVqa3ZkbTE2VkZoRlFVNW1OekppWVcxNGNEQjRkalFLWWxJM1VFbDViR1ZFYVZOVWFGb3hVV1F5VTFocFdsbEdLMUF2ZEdodE5sVTRORUZMY25kclRWUk5jRXRVUVVJMFIyUTFURWMyYUN0dVRXbFpkVkJ1ZWdwalVEQkVRaTlXTjIxME5IRmtSSFJIUkhvNVkzVkxSak53ZDFrM1NrWTJTV0ZNWlZveFUyc3pjamxPZWpacUwyeDJlRFF3UTBkWGVVaElMMkp5VFhsTkNtaFVabFEyZEdWMWJIRTNSVGg1ZURGdGFVcHRZM1ZrWlN0NlVFdFNRMUJVV1d0MGJUVTFkbWR1SzNwTE9YTmxVR1JoTnk5RU0zcERUbmsyYldWS1VtSUtZMWg2Y2pKb2JqUndXRXQ2UVN0MVMzQkRRM1JSYjFoeFMyMTJUbHAxWVRVME9TOHpOelp2WVRka1JXWnlhRVozV1dVelRYRkxNVk0zVFc0d05rWnlaZ3A1TmxWV2JXNWlVRTl3YVVodU1uUktVRnBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTUhGVk5VeDVVVkU1ZGpWRVpIaE9TV1Y0Y1VKa1NqUmllbE5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDVVhBd2QwZERkbGR1SzFKMU5FTkxVa2hxTUVSWVQyODVhM0JxUW13ek1HSkhjV0ZtYlZKYVQyRlNUR3BWYUhCTlpBcG1kRmc0UnpOM1lXODVaRU5aTm1SdlUwcFZialZoTUZWYWIyOHlaa2NyWVZodE1rTldNVXhrY2tjeGFrNXJjVWxOU2xKUFRrdDZXbVJ2TVVaVWFVTndDbGR6YzNSRVIxQnlRa3hLZFN0aWIzRktRekZaV0hWc1FpODJSalJNTWpWaGMyMXRUVTlUUTI1aGVWUnNSQ3RrY1hWRFZFUm9WbmhsTUZKUFNGZEZTVGtLY21WS2FFVlpORFJTVTBsR05sUkpMMjl4V0VKRFVFOVFTalpQZHpoQmQyRk9RMDVLTVZCS2Jpc3hZakE0Um5kblRrOWlNakJLTDFWNFduSjBhWHB2YmdwaFVWSjRNM1pqT0dkNVJURXdkRkJ0TkdNeFlYaERablV4TUZOcFJtc3paVEpaYjJ0TVIxTTBkbGhyVkZJclZrZzVabGt3WVhCbmVIZHpSbGRTTDFCTkNsWXlUWFZEYm0xVFkwcHRLMjgwWVcwcmVHSk1SMlpoSzBVMGRVdFhPVmd2ZVRSM1VBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4MjQ1Ni0wMjBlLTQyZjYtOTg4MC05Yzg1MzAzZTI3NzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AcG9vbGNvbmZpZ3dhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInBvb2xjb25maWd3YWl0IgogICAgdXNlcjogcG9vbGNvbmZpZ3dhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBwb29sY29uZmlnd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHBvb2xjb25maWd3YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ0FIY1drRUJNT0FoUHEzaXpaeWwzeDQ5WFBjQTFxWU5NcUdlWFJ4cGRVbDNzdzV6c1pKazNnNQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaFBSRVV5VFhwUk1FNUdiMWhFVkUxNlRWUkJlRTlFUlRKTmVsRXdUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQyWnpDa05OZEVoTlNETm9lRW96Tm0xNlJtVjBlbWhXVlRKNE5WbHhlWGhvVEZsMGVtSkRjR0ZQYUhKRGIwdzVhREpQU2xoMlpraFVUbkk1SzNka1RESjVSM2dLTmxKVEwyWmtVMmQxVm5WWGFtTmhTVkZYVkVaMWFFSlJaMWxFVERGdWVIZFVXbXRvVTBoVGR6RmhORzVIUzBzNWRpdDNObU0zYlVWaGFYWlNZWElyVUFwbmJrWlpjSEU1WkZGNmRXSXJZbGRKY1ROcE1XOVZjblpKYjNKNE5XeGhZV2cxY0VObWRHSllWMFpXTkVNMVRYQlRXa00yVTNCdldFaFdPR3gzVFRWQkNsVjNSSGRzV0c1UVQyNHdTVEJMVFV3MFpFNUtVVmxaVlU5UlEzTmFSVmsyYmpoNGVUSm1iMGwyUVZWbFYwbG5UR2xNV1V0SWJrUXZWRmg2VUhGRFIyWUtlVUk1V1ZkTWEzQnhhREZTT1hrMVRrOXNOWEYwUlVSSk9GRkZNMDlyWm10cEswbFJSVVZCU0VablVYUkVRbGRUTDJ4QlkydFNkVmd2Yms5WFJsVndiQXB4WW1RMEx6QjBZbWRZVEU1TVdYQTBSbEpyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGUkdKb1JXSTBiVnBJYVVGMmVIbHhUSGcyWnpaNE5YcGxUM3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEWkdGT2VGTnBiV05pVDNsdGQza3dUVWczV25CT05XNXZWRll6U2xKT2MxRjFhamROTURkeVEyaFdORVpuYmpSM1V3cE5UMnRxYUhkcFZVcGlLMDU2YVVoMVoxWjRjSGxLT0RCeVNVOUhWMFE0VWxCTmNGSndUMlUxWTBOalZuVlJlbEI0YXpJNVZFVnRUVmt2UWxSc1pGTlhDbUo0YTNkVmJVNDVkV1JaZUcweWNsRjRWbGxtY2toTFRrZ3lhamxJTUdkak9XMHdVbFpMVld3NFRVeHZOM3BMYVhjMGNsSnZjVUk0UVcxUFdqWkRMMElLUm1OR2RUSlJjM1JwU1VOamRqazBVME5YVmpGdGMwSTFUVFF4YVhSdGFFdHJZVVp4VEd0M1IzbG5SemxLSzJZeldEaGFVVEJHUW1oVGVqQTVkak5KY3dwck4yWnVhRlpQUkRaTGNHdHVWa1kyZW1wNldGWk5VbTgxUW5wUk55OVpNVXREVVdsdWNVRkJlU3RFUjB4RFl6TkdkV28xWm5WcE5HaDNkRlZSVW1VekNqaHJhV29yUkN0bWJVeDRiMDUyYUU4M1dFd3JUMDVPYTI5UFFpODJRVmx4T0VWYVRRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly83MGRlMDY0Yi1kZDZkLTQxZDEtYjk5Ny03MDVlMTE1NmRiZjEuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGZ1VqUGRuem5pWE1GajFHN0V3MzdtZXdqY0pyNTZqS0EyVTVvRm5YQ2tMaFB4a0l5Wkk3U2diSQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - "2606" @@ -7063,7 +8979,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7073,7 +8989,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3c7ce25-474f-4685-9926-5f13ec7b31ba + - ed96ba52-8e50-4673-ac46-c6c0a72ae047 status: 200 OK code: 200 duration: "" @@ -7084,19 +9000,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7106,7 +9022,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d8dc5e9-4187-49fc-a67c-02bbf6ccd943 + - 9bca726c-52e9-477e-87ed-9b75e1057bf1 status: 200 OK code: 200 duration: "" @@ -7117,19 +9033,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=371a76d7-faca-46d8-a698-c079a89d2d59&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=34a36b69-f6e4-4279-8f74-c49a6213083c&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:32.142675Z","error_message":null,"id":"6f99bb99-10e8-487f-b527-eaf526aaa91d","name":"scw-poolconfigwait-default-6f99bb9910e8487fb52","pool_id":"371a76d7-faca-46d8-a698-c079a89d2d59","provider_id":"scaleway://instance/fr-par-1/56c93cbb-e9a7-445c-a706-2586b8775d92","public_ip_v4":"163.172.131.97","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:28.993380Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:36:27.777812Z","error_message":null,"id":"b0a9dc5d-be0e-41bf-b5ce-e13680526495","name":"scw-test-pool-wait-test-pool-wait-b0a9dc5dbe0e","pool_id":"34a36b69-f6e4-4279-8f74-c49a6213083c","provider_id":"scaleway://instance/fr-par-1/456dcdc2-0d49-445e-ba9c-5a4039a43c73","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:37.957878Z"}],"total_count":1}' headers: Content-Length: - - "652" + - "689" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:34 GMT + - Thu, 19 Oct 2023 16:50:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7139,7 +9055,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 001b952c-d139-4820-82f0-31b56f9ced7b + - 55afe2a0-d05f-463a-941f-7502f7cd65b5 status: 200 OK code: 200 duration: "" @@ -7150,19 +9066,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/a1d75cfa-b784-4b5f-9256-29223915edbe + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d29afef8-724f-493c-ad4c-f3e176e9a0e6 method: DELETE response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:06:15.893908Z","id":"a1d75cfa-b784-4b5f-9256-29223915edbe","kubelet_args":{},"max_size":1,"min_size":1,"name":"minimal","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-17T10:12:35.457602110Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:41:20.399222Z","id":"d29afef8-724f-493c-ad4c-f3e176e9a0e6","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait-2","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-19T16:50:44.588507160Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + headers: + Content-Length: + - "632" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:50:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c8bea73e-2814-40de-8bc7-95557638a40f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "623" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:35 GMT + - Thu, 19 Oct 2023 16:50:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7172,7 +9121,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43b329b3-5f94-46d4-90f1-1a4dccb84a4a + - 6dbfcea2-78f3-481f-82b6-2e4a5d495397 status: 200 OK code: 200 duration: "" @@ -7183,19 +9132,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/882a0149-d4f0-470c-8a36-650eb9f9c627 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"created_at":"2023-10-19T16:34:41.054613Z","dhcp_enabled":true,"id":"882a0149-d4f0-470c-8a36-650eb9f9c627","name":"test-pool-wait","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-19T16:34:41.054613Z","id":"29e823e2-bb1a-4e49-b0e6-726aeafb43b6","subnet":"172.16.4.0/22","updated_at":"2023-10-19T16:34:41.054613Z"},{"created_at":"2023-10-19T16:34:41.054613Z","id":"57b44457-ecb1-48e2-86a5-5d7cf356e438","subnet":"fd63:256c:45f7:d0e7::/64","updated_at":"2023-10-19T16:34:41.054613Z"}],"tags":[],"updated_at":"2023-10-19T16:34:41.054613Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1460" + - "714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:35 GMT + - Thu, 19 Oct 2023 16:50:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7205,7 +9154,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec831b3b-1942-4578-a17b-f6009fae34ab + - 4139612b-5fec-4ce2-82e3-6cbcbab6366e status: 200 OK code: 200 duration: "" @@ -7216,19 +9165,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:02:04.220757Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:36:09.161891Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1460" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:35 GMT + - Thu, 19 Oct 2023 16:50:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7238,7 +9187,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e723319-4610-4718-8179-d24cdee2f5b7 + - b1c2502b-5f92-4697-8c06-173b0e6b3d75 status: 200 OK code: 200 duration: "" @@ -7249,10 +9198,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInBvb2xjb25maWd3YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVVOUdiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjVUMFp2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQySkhDa2c1TUZwYVNXaGlhamh4YUZkV2JFNVpLMUpzV2xkdVNIRlZTaTlzY1hvck1IVm9la1puUzNCTWVqa3ZkbTE2VkZoRlFVNW1OekppWVcxNGNEQjRkalFLWWxJM1VFbDViR1ZFYVZOVWFGb3hVV1F5VTFocFdsbEdLMUF2ZEdodE5sVTRORUZMY25kclRWUk5jRXRVUVVJMFIyUTFURWMyYUN0dVRXbFpkVkJ1ZWdwalVEQkVRaTlXTjIxME5IRmtSSFJIUkhvNVkzVkxSak53ZDFrM1NrWTJTV0ZNWlZveFUyc3pjamxPZWpacUwyeDJlRFF3UTBkWGVVaElMMkp5VFhsTkNtaFVabFEyZEdWMWJIRTNSVGg1ZURGdGFVcHRZM1ZrWlN0NlVFdFNRMUJVV1d0MGJUVTFkbWR1SzNwTE9YTmxVR1JoTnk5RU0zcERUbmsyYldWS1VtSUtZMWg2Y2pKb2JqUndXRXQ2UVN0MVMzQkRRM1JSYjFoeFMyMTJUbHAxWVRVME9TOHpOelp2WVRka1JXWnlhRVozV1dVelRYRkxNVk0zVFc0d05rWnlaZ3A1TmxWV2JXNWlVRTl3YVVodU1uUktVRnBqUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpMTUhGVk5VeDVVVkU1ZGpWRVpIaE9TV1Y0Y1VKa1NqUmllbE5OUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDVVhBd2QwZERkbGR1SzFKMU5FTkxVa2hxTUVSWVQyODVhM0JxUW13ek1HSkhjV0ZtYlZKYVQyRlNUR3BWYUhCTlpBcG1kRmc0UnpOM1lXODVaRU5aTm1SdlUwcFZialZoTUZWYWIyOHlaa2NyWVZodE1rTldNVXhrY2tjeGFrNXJjVWxOU2xKUFRrdDZXbVJ2TVVaVWFVTndDbGR6YzNSRVIxQnlRa3hLZFN0aWIzRktRekZaV0hWc1FpODJSalJNTWpWaGMyMXRUVTlUUTI1aGVWUnNSQ3RrY1hWRFZFUm9WbmhsTUZKUFNGZEZTVGtLY21WS2FFVlpORFJTVTBsR05sUkpMMjl4V0VKRFVFOVFTalpQZHpoQmQyRk9RMDVLTVZCS2Jpc3hZakE0Um5kblRrOWlNakJLTDFWNFduSjBhWHB2YmdwaFVWSjRNM1pqT0dkNVJURXdkRkJ0TkdNeFlYaERablV4TUZOcFJtc3paVEpaYjJ0TVIxTTBkbGhyVkZJclZrZzVabGt3WVhCbmVIZHpSbGRTTDFCTkNsWXlUWFZEYm0xVFkwcHRLMjgwWVcwcmVHSk1SMlpoSzBVMGRVdFhPVmd2ZVRSM1VBb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly82OTk4MjQ1Ni0wMjBlLTQyZjYtOTg4MC05Yzg1MzAzZTI3NzguYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AcG9vbGNvbmZpZ3dhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInBvb2xjb25maWd3YWl0IgogICAgdXNlcjogcG9vbGNvbmZpZ3dhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBwb29sY29uZmlnd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHBvb2xjb25maWd3YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBNQ0FIY1drRUJNT0FoUHEzaXpaeWwzeDQ5WFBjQTFxWU5NcUdlWFJ4cGRVbDNzdzV6c1pKazNnNQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC13YWl0IgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaFBSRVV5VFhwUk1FNUdiMWhFVkUxNlRWUkJlRTlFUlRKTmVsRXdUa1p2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlQyWnpDa05OZEVoTlNETm9lRW96Tm0xNlJtVjBlbWhXVlRKNE5WbHhlWGhvVEZsMGVtSkRjR0ZQYUhKRGIwdzVhREpQU2xoMlpraFVUbkk1SzNka1RESjVSM2dLTmxKVEwyWmtVMmQxVm5WWGFtTmhTVkZYVkVaMWFFSlJaMWxFVERGdWVIZFVXbXRvVTBoVGR6RmhORzVIUzBzNWRpdDNObU0zYlVWaGFYWlNZWElyVUFwbmJrWlpjSEU1WkZGNmRXSXJZbGRKY1ROcE1XOVZjblpKYjNKNE5XeGhZV2cxY0VObWRHSllWMFpXTkVNMVRYQlRXa00yVTNCdldFaFdPR3gzVFRWQkNsVjNSSGRzV0c1UVQyNHdTVEJMVFV3MFpFNUtVVmxaVlU5UlEzTmFSVmsyYmpoNGVUSm1iMGwyUVZWbFYwbG5UR2xNV1V0SWJrUXZWRmg2VUhGRFIyWUtlVUk1V1ZkTWEzQnhhREZTT1hrMVRrOXNOWEYwUlVSSk9GRkZNMDlyWm10cEswbFJSVVZCU0VablVYUkVRbGRUTDJ4QlkydFNkVmd2Yms5WFJsVndiQXB4WW1RMEx6QjBZbWRZVEU1TVdYQTBSbEpyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpGUkdKb1JXSTBiVnBJYVVGMmVIbHhUSGcyWnpaNE5YcGxUM3BOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZEWkdGT2VGTnBiV05pVDNsdGQza3dUVWczV25CT05XNXZWRll6U2xKT2MxRjFhamROTURkeVEyaFdORVpuYmpSM1V3cE5UMnRxYUhkcFZVcGlLMDU2YVVoMVoxWjRjSGxLT0RCeVNVOUhWMFE0VWxCTmNGSndUMlUxWTBOalZuVlJlbEI0YXpJNVZFVnRUVmt2UWxSc1pGTlhDbUo0YTNkVmJVNDVkV1JaZUcweWNsRjRWbGxtY2toTFRrZ3lhamxJTUdkak9XMHdVbFpMVld3NFRVeHZOM3BMYVhjMGNsSnZjVUk0UVcxUFdqWkRMMElLUm1OR2RUSlJjM1JwU1VOamRqazBVME5YVmpGdGMwSTFUVFF4YVhSdGFFdHJZVVp4VEd0M1IzbG5SemxLSzJZeldEaGFVVEJHUW1oVGVqQTVkak5KY3dwck4yWnVhRlpQUkRaTGNHdHVWa1kyZW1wNldGWk5VbTgxUW5wUk55OVpNVXREVVdsdWNVRkJlU3RFUjB4RFl6TkdkV28xWm5WcE5HaDNkRlZSVW1VekNqaHJhV29yUkN0bWJVeDRiMDUyYUU4M1dFd3JUMDVPYTI5UFFpODJRVmx4T0VWYVRRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly83MGRlMDY0Yi1kZDZkLTQxZDEtYjk5Ny03MDVlMTE1NmRiZjEuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXdhaXQKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC13YWl0IgogICAgdXNlcjogdGVzdC1wb29sLXdhaXQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtd2FpdApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC13YWl0LWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBGZ1VqUGRuem5pWE1GajFHN0V3MzdtZXdqY0pyNTZqS0EyVTVvRm5YQ2tMaFB4a0l5Wkk3U2diSQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - "2606" @@ -7261,7 +9210,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:35 GMT + - Thu, 19 Oct 2023 16:50:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7271,7 +9220,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 154a5887-fa05-4b9c-a253-b00b29e9bc76 + - af696075-b555-413e-b797-1595399c3ae2 status: 200 OK code: 200 duration: "" @@ -7282,19 +9231,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: GET response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-17T10:06:09.372150Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":[],"updated_at":"2023-10-19T16:41:12.895030Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "617" + - "624" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:36 GMT + - Thu, 19 Oct 2023 16:50:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7304,7 +9253,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5acb9ce0-5aa6-47f4-9780-8b30cb1b8d09 + - bee2abb3-e7ea-4693-8794-21b7cbda25c5 status: 200 OK code: 200 duration: "" @@ -7315,19 +9264,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778/nodes?order_by=created_at_asc&page=1&pool_id=371a76d7-faca-46d8-a698-c079a89d2d59&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1/nodes?order_by=created_at_asc&page=1&pool_id=34a36b69-f6e4-4279-8f74-c49a6213083c&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:32.142675Z","error_message":null,"id":"6f99bb99-10e8-487f-b527-eaf526aaa91d","name":"scw-poolconfigwait-default-6f99bb9910e8487fb52","pool_id":"371a76d7-faca-46d8-a698-c079a89d2d59","provider_id":"scaleway://instance/fr-par-1/56c93cbb-e9a7-445c-a706-2586b8775d92","public_ip_v4":"163.172.131.97","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:12:35.995182Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-19T16:36:27.777812Z","error_message":null,"id":"b0a9dc5d-be0e-41bf-b5ce-e13680526495","name":"scw-test-pool-wait-test-pool-wait-b0a9dc5dbe0e","pool_id":"34a36b69-f6e4-4279-8f74-c49a6213083c","provider_id":"scaleway://instance/fr-par-1/456dcdc2-0d49-445e-ba9c-5a4039a43c73","public_ip_v4":"51.158.117.252","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-19T16:50:45.081910Z"}],"total_count":1}' headers: Content-Length: - - "652" + - "689" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:36 GMT + - Thu, 19 Oct 2023 16:50:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7337,7 +9286,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bf3ca16-3fc0-46d5-a69b-58b0d6e1ebcf + - 0a523495-49ce-44db-b7b6-01fcfa9ee093 status: 200 OK code: 200 duration: "" @@ -7348,19 +9297,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/371a76d7-faca-46d8-a698-c079a89d2d59 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/34a36b69-f6e4-4279-8f74-c49a6213083c method: DELETE response: - body: '{"autohealing":false,"autoscaling":false,"cluster_id":"69982456-020e-42f6-9880-9c85303e2778","container_runtime":"containerd","created_at":"2023-10-17T10:00:32.373472Z","id":"371a76d7-faca-46d8-a698-c079a89d2d59","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-17T10:12:36.693894114Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' + body: '{"autohealing":false,"autoscaling":false,"cluster_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","container_runtime":"containerd","created_at":"2023-10-19T16:34:48.387741Z","id":"34a36b69-f6e4-4279-8f74-c49a6213083c","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-wait","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":[],"updated_at":"2023-10-19T16:50:46.130256812Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-1"}' headers: Content-Length: - - "623" + - "630" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:36 GMT + - Thu, 19 Oct 2023 16:50:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7370,7 +9319,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0419fd2e-5f1b-49cc-babd-1a09adcee2a5 + - 7c512651-1cb8-40fc-98cd-203536bce548 status: 200 OK code: 200 duration: "" @@ -7381,19 +9330,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1?with_additional_resources=true method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:12:36.779498016Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:50:46.219496283Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1500" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:50:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 26d2a9c8-b1f4-4ec3-a5b6-c225d6e7c18d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:50:46.219496Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1466" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:36 GMT + - Thu, 19 Oct 2023 16:50:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7403,7 +9385,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c882917-fb7d-4e59-a01a-aeb6f0c23b9d + - c0398616-9e14-4485-9ff2-29dabe59bb11 status: 200 OK code: 200 duration: "" @@ -7414,19 +9396,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:12:36.779498Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:50:46.219496Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1463" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:37 GMT + - Thu, 19 Oct 2023 16:50:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7436,7 +9418,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59ec7d91-71a4-4988-9c93-aa312cda6603 + - 061e526b-c5cb-4656-bb4f-5f823d33af63 status: 200 OK code: 200 duration: "" @@ -7447,19 +9429,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:12:36.779498Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:50:46.219496Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1463" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:42 GMT + - Thu, 19 Oct 2023 16:50:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7469,7 +9451,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40740a8c-86c1-4d08-bd77-8805def79b7c + - 0de805c3-b787-4b1e-aa3f-26926196091d status: 200 OK code: 200 duration: "" @@ -7480,19 +9462,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://69982456-020e-42f6-9880-9c85303e2778.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-17T10:00:26.860531Z","created_at":"2023-10-17T10:00:26.860531Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.69982456-020e-42f6-9880-9c85303e2778.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"69982456-020e-42f6-9880-9c85303e2778","ingress":"none","name":"PoolConfigWait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-17T10:12:36.779498Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://70de064b-dd6d-41d1-b997-705e1156dbf1.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-19T16:34:42.900976Z","created_at":"2023-10-19T16:34:42.900976Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.70de064b-dd6d-41d1-b997-705e1156dbf1.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"70de064b-dd6d-41d1-b997-705e1156dbf1","ingress":"none","name":"test-pool-wait","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"type":"kapsule","updated_at":"2023-10-19T16:50:46.219496Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1463" + - "1497" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:47 GMT + - Thu, 19 Oct 2023 16:51:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7502,7 +9484,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 049d0472-163d-437e-bdc8-79a1508e497a + - 8e414647-df1e-489a-a5c4-776a01e4cee0 status: 200 OK code: 200 duration: "" @@ -7513,10 +9495,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"69982456-020e-42f6-9880-9c85303e2778","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","type":"not_found"}' headers: Content-Length: - "128" @@ -7525,7 +9507,40 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:52 GMT + - Thu, 19 Oct 2023 16:51:06 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa8964f5-74ef-4355-a7e1-016a4c3264a4 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/882a0149-d4f0-470c-8a36-650eb9f9c627 + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"882a0149-d4f0-470c-8a36-650eb9f9c627","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 19 Oct 2023 16:51:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7535,7 +9550,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfd132f5-d972-4cce-8526-3ecc0b2a9a18 + - 06fb7a82-8e2e-46e8-866c-1d75ae95f04e status: 404 Not Found code: 404 duration: "" @@ -7546,10 +9561,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/69982456-020e-42f6-9880-9c85303e2778 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/70de064b-dd6d-41d1-b997-705e1156dbf1 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"69982456-020e-42f6-9880-9c85303e2778","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"70de064b-dd6d-41d1-b997-705e1156dbf1","type":"not_found"}' headers: Content-Length: - "128" @@ -7558,7 +9573,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:12:52 GMT + - Thu, 19 Oct 2023 16:51:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7568,7 +9583,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3310e174-5ee9-4481-99b0-febfef08e2ad + - 0bc67a70-fb66-41b0-8b64-e69cbeb485e4 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-pool-zone.cassette.yaml b/scaleway/testdata/k8s-cluster-pool-zone.cassette.yaml index f6b1f3f516..6e4b2cd420 100644 --- a/scaleway/testdata/k8s-cluster-pool-zone.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-pool-zone.cassette.yaml @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:21 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,80 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9a0ddc7-8f18-4dbb-bf23-5430d60fac22 + - 03a4c874-5538-4359-8e29-e15d639f01ba status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"K8SPoolConfigZone","description":"","tags":["terraform-test","scaleway_k8s_cluster","zone"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-pool-zone","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-18T16:35:44.620844Z","dhcp_enabled":true,"id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","name":"test-pool-zone","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.620844Z","id":"76cf3e27-3a4f-46a7-8873-d5b762f56fc0","subnet":"172.16.32.0/22","updated_at":"2023-10-18T16:35:44.620844Z"},{"created_at":"2023-10-18T16:35:44.620844Z","id":"85a6b9d1-979b-4c8e-84fd-e1f4e1b8b73c","subnet":"fd63:256c:45f7:5a8f::/64","updated_at":"2023-10-18T16:35:44.620844Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.620844Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "715" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bf8a9ab0-621c-4aea-a664-4c830121bce8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3 + method: GET + response: + body: '{"created_at":"2023-10-18T16:35:44.620844Z","dhcp_enabled":true,"id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","name":"test-pool-zone","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.620844Z","id":"76cf3e27-3a4f-46a7-8873-d5b762f56fc0","subnet":"172.16.32.0/22","updated_at":"2023-10-18T16:35:44.620844Z"},{"created_at":"2023-10-18T16:35:44.620844Z","id":"85a6b9d1-979b-4c8e-84fd-e1f4e1b8b73c","subnet":"fd63:256c:45f7:5a8f::/64","updated_at":"2023-10-18T16:35:44.620844Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.620844Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "715" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0774433-43ec-4537-bdd9-f6f10037a360 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"test-pool-zone","description":"","tags":["terraform-test","scaleway_k8s_cluster","zone"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3"}' form: {} headers: Content-Type: @@ -50,16 +118,777 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914231801Z","created_at":"2023-10-17T10:00:26.914231801Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:00:26.928163940Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648461Z","created_at":"2023-10-18T16:35:45.787648461Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:35:45.806719535Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1503" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c75b5901-c784-47ce-a265-3d0c1724da53 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:35:45.806720Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1494" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1cf6c085-4de6-4883-8036-43309ae792b2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.914979Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1499" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - df74a584-d9d0-42d0-bf25-616dad1e9296 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.914979Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1499" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0af95ac0-5e5d-43a9-a1ad-c4c001650b78 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e/kubeconfig + method: GET + response: + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC16b25lIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VFhwVk1FNHhiMWhFVkUxNlRWUkJlRTU2UlRKTmVsVXdUakZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlVIQmhDa05tUnl0Q1NqbDFaV2xZZEVSdFlVUkNRMUpaYUZWc1RIbGtOalUwWW5STlUzbHdkSEZTVUc1TGRFaEVVRzlWUVhGb2VrOUZhSGd3Y0V4VVJHaHFTRVFLU1ZoSWVrbFFObFJJUVRScVFqbFRWRmRHZEVWSWVYVXpVR3hVVVdOVFZFVTVWMWRWV1N0dVR6QndNelo1UkdkSksxSkZkelIzUkdWTWQxbFRPRGRLTlFwUmIwWTVTWGRIV1ZnMGNGVmxOVEJKZHpsYVMyUnhWV2czVkRkNlVFeDZWVGhZTkN0dGVFc3haSHBXUkRsalNsVkhOVWhQSzBWbVIyMVdWVGRtV21abENtVkVObGxKYUhwM1dYZDZRazFQYWxBMGVraFhXWG92WVhKNGNHcHhSR05zTUhkaFpHRXdTV05IYkhOdmRXaDFLMko2TWpabFExZHFlSFpQYURoYU5td0tTMloyUTJZdlNYWkJhVGxZTXpkWmJuRmpSM00wTVhSb1dVaGxiV3BqVkVaUlpqRnNkWFZCWVRNcmF6Z3ZTbEZoY2xWamVtVnljVkZDUldSTlNHaGxad3BsVEdnMVYzbE5kVTlCY1VKdFdFaFdUbGxyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpJSzBrd1YwZEhZbVpCYVRGUU5YUlBaV2haVEZCMlp5OXBSSFZOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCSzNwTFoxQjZLM00wY0RORWNGaEhMM05WUWt4dFpXNDVXRFp3YjFrdmN6WkVTVGxGVkRocVEydDFibk4yUjBoQlpBcDZOR0pxUlhCdlFuRTJOVGRwVm1GMFpEbHVVMWhYZVZCb056VnJPR1Z5VlhRMWFTdEZTbEE0ZEhKd1R6aERXbVZaVDAxVk9WaEtOak51VjBwRWRESnVDbEpRVldoYVlYbGFiRmM0YUdFNGRrbHZkbEJ3TDJVM0t6WmhNRmN3WVVaeWRWVndlV2RtVkROUGRtY3pWMFoxYWxsWU1GVnBVV3Q2YmsxRWNHUkxLMFVLUzJFMk5FUTBaRTFXVDI5VU0wSllPRUp6TUZwbE4yeDNZVGxEY1cxcVluQjFTamxQTUhOWmRTOXVOVmRwYVRoa1QyMDFjV1l2TUhWeFpVWXpLMFpqU2dwcE5ITlNVRWRyZDNkelNXTmtNRGhGVFM5a1kwMXZjMkZPYVRCS01IcG9NRkV6UzFrMVpsUlhkSFpYYlRCRlZuTjFNSFIzV2xGclYzbFJWblptTTFsTENuTXhVa05NYUc5ck1sSTRiVWhpZURVMFJuWnhhR05OVGtKbmNuaE1ZUzlsTmtGc1NRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly80ZjJiOTdhMS1kYjUyLTQ1YjEtOTdmMC03ODJlZGYzNDIyMGUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXpvbmUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC16b25lIgogICAgdXNlcjogdGVzdC1wb29sLXpvbmUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtem9uZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC16b25lLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB4YWRUdUVUYml3aHltSmFjNmJvQmFLUVUya0JnRXJyYk85T2l6M0hXbUl1azN1WFRUelZ5UDJOWA==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2606" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b319aa6c-248e-4e52-be41-5c22b346aaea + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:35:47.914979Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1499" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72b1893c-7a74-49fb-82b9-a2efbe7f620e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","zone"],"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-2","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e/pools + method: POST + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232182853Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "675" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 31cb6124-eef7-45ac-b08a-c4ef7140641b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eac6c717-b2a4-4895-a234-2351a7ff0921 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:35:56 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6fa63a64-2b96-4ac4-8c50-1aa4c1b72abf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b182f12-cd80-4a2e-9cc4-33d00c428658 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:07 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5ca8fd0-99f0-4769-96e2-d2994d2549df + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb8619c4-9eed-49df-9995-a42a998fc2cb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 75e35ef8-b18d-45cb-8d39-1783e671271c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39eebcb8-2893-41e5-b107-03de1ab5e4a6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 351a7dd5-80d2-43df-983b-57acf6c1c39a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3dd01460-0511-4472-867d-070fb219249f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a6fa83c4-a76f-43c6-8e27-88ae5924c984 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72801387-0f3e-4652-ad77-753e31abee6d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f63f1a4f-1acf-41e0-b546-6f7bef288d00 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3da7df45-90c6-4d9d-a156-076a7b596685 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:36:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 67f6b7b1-508c-47bd-99d9-a78e4b3d6655 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:37:03 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 91a99afe-864a-4900-b451-1f34af697a28 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:37:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f55ac812-c2c7-496f-bca6-3e7f89d8db61 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "1472" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:26 GMT + - Wed, 18 Oct 2023 16:37:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d54de87d-ab2b-4918-8a4d-f82dc6b70c30 + - dedcb26b-be8a-4b99-8062-24b82fc0e42e status: 200 OK code: 200 duration: "" @@ -80,19 +909,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:00:26.928164Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "1463" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:26 GMT + - Wed, 18 Oct 2023 16:37:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 510691dd-08ec-4631-9690-bd5872fccf0c + - 42da0835-e1cc-436b-8006-c143aee09fb2 status: 200 OK code: 200 duration: "" @@ -113,19 +942,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:00:26.928164Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "1463" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:32 GMT + - Wed, 18 Oct 2023 16:37:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -135,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25dc5d2e-2efa-4015-8b0f-27ebb3ae80a5 + - 8d3b6ef9-1769-4431-9196-9edac47a5c20 status: 200 OK code: 200 duration: "" @@ -146,19 +975,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:00:32.496014Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "1468" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:37 GMT + - Wed, 18 Oct 2023 16:37:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac1d798c-fffa-432d-8efe-6d67485a17c3 + - a786827a-f44d-48c8-8b66-45acff5e026e status: 200 OK code: 200 duration: "" @@ -179,19 +1008,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:00:32.496014Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "1468" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:37 GMT + - Wed, 18 Oct 2023 16:37:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac074709-4afc-4554-9b49-0510af90a8c2 + - d5489989-5280-4ede-aaac-57ac0babf1ba status: 200 OK code: 200 duration: "" @@ -212,19 +1041,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWd6b25lIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVrMXNiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjZUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlNtbFFDbTFDYUU5ME1GTk9NbmxEVVVGSlEwTmtVVVEzVkZSVWRYaHNUbTFTYW5CeE1YTkdZa2hKZVZGMGFraEJjRlUxWkZwd2RtUjVTemRVYVRGdVNHdGhhak1LVVZGR01URkhiaXRGUkZCNFNUQk1Ta0kzYXl0d2F6RlpkalU1WTBwTGRrWklSVFFyU21GdmJWZ3lkME15ZDFORUwxWTVabTAxZHpjdmNucDRhM1l5TlFwcFUxbDRjMmR3T0ZGalExVnRSa0l4WkhOdU1EbFdOVVV2TmxaME9VTlBka2xWWTNVNE9VcDVaalYyYVd4elQzVlVPVGhhUkdOU05sUkJRMU55VUVaaUNuSXpNamxaVG1aSFJtdEdjVzlVYzFOaE1HdFhLMGxaVVVoTFkwcEpjbmt6VlVkelkxcE1hMFpLYTBSc2RIUkNaMlZ5TjNZeVRtbDNWVXg1SzFkWk1Hb0tkMmQ1WWtWVVkwdDRZWFY2YUdaWlYwUmFhMFpQTVRScFRIUjBhRmN5TjFaNmNYRXhUVTQzWWpobFRHMTBlamN3ZGl0aGJFUk1ZVWRYWlROdFptZFBOQXB6Y2xZNE1VeHNjMDV0Y0hKRVlYWllXRmRyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpOVXpSYVNTOHZNbGRNZDNCV0wyZ3JjbmhsZUd4VFNXcFVUSGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDUjNCTU4ycEVMMm9yUkVJNE9VRmxTRmxvYURaRVJrWlplVU13WWpWTlpuSnZPWE5IYUVSeUswMVRWRU14WjNNck5Rb3lWRkF6VTJzMFIyeE1Va2xrYURGVFpHNUxLMUpQUWk4d0x6aFNWSEUzWm1ONGJVSmlaSE5yY1VkeVpIRTJOR0U1UWk5MVVrZE1aMHR2VGs1bVlYWXZDbFpIYW1oRE5qUllTMDUzY1M5elVpdEtkVmswVjNRclJVZEpXRmhpTTNrd1oxWldka3QyYjFkRFJqVnFNME1yWW1zeFRUVnNiWE5YUkRsSmJWVk5jemtLUTFKRGNubGtOakZ2Y1N0RU9HUXJZMGQwUVdkc2FVdFFkbk5aWjNsT2JWUnVXbmR0VnpSM1NFTnJXRmxNVDFCRVNEZHBVRFkwU1d4V1owVmhXV3RGZHdwSFpDdHRaMDh6Y1RCRWQwUTRiMHhUVDJSbWRsbzVUbk4zYkVKR2Mxb3pZMWhNWm01SWRVOWtSWEJuVFZKSFJpOUtZa1pqWlRSSWJuVmFiVUoxWXpRekNuUnZRbGh0TWpoUE9WRmtPVGd4WlRWTVpVOVJNM0ZwZEUxMGNIVnVPWEJTU0hVNE1Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9iOTE0NmY2Zi1hN2NlLTQ2NGEtOTY1Yi00YmNiOTNjMzQ5MDAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ3pvbmUKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWd6b25lIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ3pvbmUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlnem9uZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWd6b25lLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBZdHdMQkZGcldBclE4UXREZFVxZXZjQkxGcHQ0aWtlTGNGTFZXTFNXNEtuYzZZR05PSEoyaWFFbQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "2630" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:41 GMT + - Wed, 18 Oct 2023 16:37:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fd9fa92-bda7-4c62-b31d-1e0a1bac092f + - b091fdfb-71bf-4003-8daf-b80e0b08e294 status: 200 OK code: 200 duration: "" @@ -245,19 +1074,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:00:32.496014Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "1468" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:42 GMT + - Wed, 18 Oct 2023 16:37:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -267,32 +1096,261 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 190d2530-bdc2-4f70-bc5d-0af4191fe054 + - 3060e58b-9706-4740-be16-401fdb687e7e status: 200 OK code: 200 duration: "" - request: - body: '{"name":"default","node_type":"gp1_xs","placement_group_id":null,"autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","zone"],"kubelet_args":{},"upgrade_policy":null,"zone":"fr-par-2","root_volume_type":"default_volume_type","root_volume_size":null,"public_ip_disabled":false}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 16:37:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3dbdb467-af84-4157-8219-0f50ca933aa9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900/pools - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:37:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0160b31e-9353-49e9-b985-67b41a6f5e23 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:37:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eae40598-6e04-4c8f-8ded-fe7226849661 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:38:04 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14afb4fb-b1ef-4935-9225-c0129e121cd6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:38:09 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a564e212-63be-4cd1-8a78-3a284878b55f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:38:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1044847b-f4b0-47fa-a917-3e78678b87df + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET + response: + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + headers: + Content-Length: + - "672" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:38:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c434cd2e-e56e-4f73-a7ca-b2bf701589a3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd + method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691422830Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "668" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:43 GMT + - Wed, 18 Oct 2023 16:38:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +1360,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a014f79-b7fa-402f-8ee9-4d5f9e7fe880 + - d1178ba6-9629-4cf6-a8b2-139becd5a7bc status: 200 OK code: 200 duration: "" @@ -313,19 +1371,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:43 GMT + - Wed, 18 Oct 2023 16:38:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -335,7 +1393,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3cfd04f-9a1f-4e9b-9647-c66200deadfe + - 3038f45a-eeab-4854-ad3e-d2d4858e4dd4 status: 200 OK code: 200 duration: "" @@ -346,19 +1404,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:49 GMT + - Wed, 18 Oct 2023 16:38:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -368,7 +1426,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3eab7ebe-0cba-4014-a5a8-9a5046a93bac + - fc2a35e6-b9af-4d87-b8ef-8decb228ee3c status: 200 OK code: 200 duration: "" @@ -379,19 +1437,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:00:54 GMT + - Wed, 18 Oct 2023 16:38:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +1459,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22739aa2-2a45-4ca1-bf57-7fe0234e518c + - 368b7ce3-0302-430b-9619-a32385d1120a status: 200 OK code: 200 duration: "" @@ -412,19 +1470,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:00 GMT + - Wed, 18 Oct 2023 16:38:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +1492,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be03767d-37d4-400b-a02a-021b78400980 + - cd8fd5aa-52f9-47c5-816c-18b6f453b2eb status: 200 OK code: 200 duration: "" @@ -445,19 +1503,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:06 GMT + - Wed, 18 Oct 2023 16:38:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +1525,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aad9ee2c-5e61-41de-9c13-541236ddcf0e + - 7440baf2-7c57-4d0e-9dfb-91e27203698e status: 200 OK code: 200 duration: "" @@ -478,19 +1536,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:11 GMT + - Wed, 18 Oct 2023 16:38:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +1558,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30511eed-0a92-4831-a2a7-ce324bcbcc34 + - 3bdb6f9a-804f-411c-bc08-bc7dd3c697cd status: 200 OK code: 200 duration: "" @@ -511,19 +1569,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:16 GMT + - Wed, 18 Oct 2023 16:38:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +1591,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d613aeb5-adcc-487d-a137-c3a2a4cfc0c2 + - fcb7ec1e-49a9-4949-86e7-6454eb3b23f0 status: 200 OK code: 200 duration: "" @@ -544,19 +1602,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:21 GMT + - Wed, 18 Oct 2023 16:39:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +1624,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 733982ae-bac8-4b03-bb24-7bc3f2814bed + - 259bcf40-e379-4926-8f4d-7c3bce5b1232 status: 200 OK code: 200 duration: "" @@ -577,19 +1635,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:26 GMT + - Wed, 18 Oct 2023 16:39:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +1657,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0332cf21-a4c4-454d-a0ac-604693860526 + - 37701c35-71c9-4ed8-bdef-5088e67cf0b5 status: 200 OK code: 200 duration: "" @@ -610,19 +1668,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:31 GMT + - Wed, 18 Oct 2023 16:39:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,7 +1690,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae55e6fc-5c08-4206-ac46-1628d176b36b + - 4065f99f-e1e1-454d-9226-04d96f148ea8 status: 200 OK code: 200 duration: "" @@ -643,19 +1701,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:36 GMT + - Wed, 18 Oct 2023 16:39:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +1723,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e978725-a6da-4f95-a5ab-cad4b9754633 + - 422882af-ac2e-46af-b57c-49f359b771bb status: 200 OK code: 200 duration: "" @@ -676,19 +1734,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:41 GMT + - Wed, 18 Oct 2023 16:39:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,7 +1756,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a17fb21d-a28e-4443-9ecc-549f816f2073 + - 86efea57-3e11-4c58-a14e-999cbb1c88fb status: 200 OK code: 200 duration: "" @@ -709,19 +1767,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:46 GMT + - Wed, 18 Oct 2023 16:39:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +1789,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7e2a225-bf2e-4fb5-92af-839508a93703 + - ff387f8c-19f4-49e3-93f7-8ff424d2329e status: 200 OK code: 200 duration: "" @@ -742,19 +1800,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:51 GMT + - Wed, 18 Oct 2023 16:39:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,7 +1822,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5178a2c3-0b50-4d91-82fa-590e5495480c + - 8ec4363b-03d0-44f2-9f29-fea078978845 status: 200 OK code: 200 duration: "" @@ -775,19 +1833,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:01:56 GMT + - Wed, 18 Oct 2023 16:39:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -797,7 +1855,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84b4366a-92fb-475e-8caa-41e34e08e644 + - abe40bff-0338-4ef9-a481-f7f3bff18197 status: 200 OK code: 200 duration: "" @@ -808,19 +1866,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:02 GMT + - Wed, 18 Oct 2023 16:39:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -830,7 +1888,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d8d09eb-01ba-4e58-a291-3a3f7b3ef1d4 + - 04a18ea8-a95d-44fe-8d51-855308e9e740 status: 200 OK code: 200 duration: "" @@ -841,19 +1899,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:07 GMT + - Wed, 18 Oct 2023 16:39:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -863,7 +1921,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07b474d4-10c7-47ec-80e1-695d3ae1167d + - ade7c44d-451f-4ab0-b919-c64d33bc45d4 status: 200 OK code: 200 duration: "" @@ -874,19 +1932,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:12 GMT + - Wed, 18 Oct 2023 16:39:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -896,7 +1954,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f025e2b-5e0f-4ddf-bc1c-0fde96980abd + - 09305131-d267-4959-92e9-b1e8b0656523 status: 200 OK code: 200 duration: "" @@ -907,19 +1965,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:17 GMT + - Wed, 18 Oct 2023 16:40:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +1987,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f96e7e1-4b90-4362-b574-b9e7413ebb77 + - 113f993d-b662-40df-91e2-75c24d9d2954 status: 200 OK code: 200 duration: "" @@ -940,19 +1998,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:22 GMT + - Wed, 18 Oct 2023 16:40:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -962,7 +2020,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46d174dc-af9f-4fa5-9c92-1dee7c214a04 + - 24adcb9c-522f-45a2-b07e-fa0bfc27b01e status: 200 OK code: 200 duration: "" @@ -973,19 +2031,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:27 GMT + - Wed, 18 Oct 2023 16:40:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -995,7 +2053,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97c9568a-bfd1-4498-87bd-f2371162037b + - c81ec0c5-2fd9-4025-a065-e47458e8fa4a status: 200 OK code: 200 duration: "" @@ -1006,19 +2064,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:32 GMT + - Wed, 18 Oct 2023 16:40:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1028,7 +2086,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40ab3558-2654-4557-9516-810fa3cf3448 + - e40cd8b7-4706-47d9-9626-a085ef5d8902 status: 200 OK code: 200 duration: "" @@ -1039,19 +2097,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:37 GMT + - Wed, 18 Oct 2023 16:40:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1061,7 +2119,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e75f5c6-9790-4a3a-ab22-61c531180070 + - 35bdd509-f8ac-4b07-a831-fe9204113843 status: 200 OK code: 200 duration: "" @@ -1072,19 +2130,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:42 GMT + - Wed, 18 Oct 2023 16:40:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1094,7 +2152,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b8d1f07-d176-4a74-b440-e20851b6653c + - 7980ce4c-233a-456b-8c3e-da34f3e92dae status: 200 OK code: 200 duration: "" @@ -1105,19 +2163,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:47 GMT + - Wed, 18 Oct 2023 16:40:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,7 +2185,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30314646-afba-44fd-a226-872e177d69c7 + - 3cfcc411-8f7b-4482-b3b3-8a5e7364e0c7 status: 200 OK code: 200 duration: "" @@ -1138,19 +2196,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:52 GMT + - Wed, 18 Oct 2023 16:40:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +2218,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6bef29a-88d3-4418-8ca1-b14350dca2e1 + - 4c5ea182-40a3-4b60-8c8d-6e7b15d5d121 status: 200 OK code: 200 duration: "" @@ -1171,19 +2229,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:02:57 GMT + - Wed, 18 Oct 2023 16:40:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1193,7 +2251,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4324893a-f410-429d-b59a-ff31e77fd0fe + - 8c214b4c-13d1-406f-b597-f6d84327e9b6 status: 200 OK code: 200 duration: "" @@ -1204,19 +2262,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:02 GMT + - Wed, 18 Oct 2023 16:40:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1226,7 +2284,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6928b45-d1e5-4b60-92b4-38ff88e52724 + - 51c03b65-7d84-4217-becc-2ee3086cebad status: 200 OK code: 200 duration: "" @@ -1237,19 +2295,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:07 GMT + - Wed, 18 Oct 2023 16:40:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1259,7 +2317,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c76cbd6-d6f9-47a0-902b-946d0d8572aa + - ed281d02-1cfb-45a7-bf8a-c3fa0f137ec7 status: 200 OK code: 200 duration: "" @@ -1270,19 +2328,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:12 GMT + - Wed, 18 Oct 2023 16:40:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1292,7 +2350,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a040f05-706d-431f-8c9c-ae5ce619e291 + - d1a39ea2-bd4a-4122-a35b-46654edad2ed status: 200 OK code: 200 duration: "" @@ -1303,19 +2361,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:17 GMT + - Wed, 18 Oct 2023 16:41:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1325,7 +2383,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f726cc20-8db6-4337-925a-444cac5a1844 + - 5547d529-29ce-4d29-9110-c1b856654b84 status: 200 OK code: 200 duration: "" @@ -1336,19 +2394,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:22 GMT + - Wed, 18 Oct 2023 16:41:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1358,7 +2416,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1c44299-8648-42e4-b73b-7cb17838a1e1 + - 5a467d4d-4801-4890-b459-6e6396e61eb5 status: 200 OK code: 200 duration: "" @@ -1369,19 +2427,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:28 GMT + - Wed, 18 Oct 2023 16:41:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1391,7 +2449,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c71e2bac-87a4-442e-8271-8c02da02acf3 + - d2e7a07d-7d91-4fdd-831c-8512bed13a2a status: 200 OK code: 200 duration: "" @@ -1402,19 +2460,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:33 GMT + - Wed, 18 Oct 2023 16:41:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1424,7 +2482,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f448a170-bba5-4867-9bce-cbdc322d5c01 + - 93f0715b-3441-40e0-be80-b41b02f79400 status: 200 OK code: 200 duration: "" @@ -1435,19 +2493,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:38 GMT + - Wed, 18 Oct 2023 16:41:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1457,7 +2515,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca464542-f05a-4743-b1a0-308c8d069d3c + - f846059e-01d3-4afa-8510-bf652a859f4c status: 200 OK code: 200 duration: "" @@ -1468,19 +2526,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:43 GMT + - Wed, 18 Oct 2023 16:41:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1490,7 +2548,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5136fa58-170f-40b2-bda6-0a17e295cb32 + - cff5b94f-68a7-4677-8fec-98217611929f status: 200 OK code: 200 duration: "" @@ -1501,19 +2559,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:48 GMT + - Wed, 18 Oct 2023 16:41:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1523,7 +2581,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a56158d1-2d2f-4298-b7b2-c83321379ef2 + - 98c06be4-bf47-4145-b1b9-a8a5c4eb7ffd status: 200 OK code: 200 duration: "" @@ -1534,19 +2592,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:53 GMT + - Wed, 18 Oct 2023 16:41:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1556,7 +2614,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b776c6f9-783c-4f0c-a161-fd6dae19a3b4 + - d4410673-8c45-4a9d-9420-66ab473edccf status: 200 OK code: 200 duration: "" @@ -1567,19 +2625,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:03:58 GMT + - Wed, 18 Oct 2023 16:41:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1589,7 +2647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c41263e-af06-4707-9527-7de41a4d54fd + - aaaddde7-1078-4edd-a89b-25af3124a7a7 status: 200 OK code: 200 duration: "" @@ -1600,19 +2658,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:03 GMT + - Wed, 18 Oct 2023 16:41:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1622,7 +2680,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f3f34ae-48fd-4a0e-84f9-8edfe76e63fb + - 81bd1706-a1a7-455d-9c63-b8f0eaccbd4f status: 200 OK code: 200 duration: "" @@ -1633,19 +2691,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:08 GMT + - Wed, 18 Oct 2023 16:41:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1655,7 +2713,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4f30631-a629-46e0-928a-6eb2ac328ff8 + - d649140e-ba94-49c0-a0e9-24a456bce9fe status: 200 OK code: 200 duration: "" @@ -1666,19 +2724,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:13 GMT + - Wed, 18 Oct 2023 16:41:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1688,7 +2746,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65ba339f-98a2-4ceb-a213-086b2f22f6c7 + - 232ce488-3ff5-4b2e-989b-8c8133c49f42 status: 200 OK code: 200 duration: "" @@ -1699,19 +2757,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:18 GMT + - Wed, 18 Oct 2023 16:42:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1721,7 +2779,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2538c73e-a12a-4f02-a7e3-5d8141735514 + - 8b636c61-dfa5-4c43-80c3-4339d15228ca status: 200 OK code: 200 duration: "" @@ -1732,19 +2790,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:23 GMT + - Wed, 18 Oct 2023 16:42:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1754,7 +2812,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eefa2b57-a68a-4015-aa40-5cd0aa8256e8 + - 2dbc21b0-523e-483e-a00d-5a8f662b3249 status: 200 OK code: 200 duration: "" @@ -1765,19 +2823,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:28 GMT + - Wed, 18 Oct 2023 16:42:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1787,7 +2845,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4347f75c-9a82-4447-8eaf-be161cde113e + - f4831cb9-19cd-4849-8466-4ef2fb4f87d6 status: 200 OK code: 200 duration: "" @@ -1798,19 +2856,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:33 GMT + - Wed, 18 Oct 2023 16:42:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1820,7 +2878,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e631ae4-8caa-46b6-9d62-4c9909772222 + - 5873f028-5257-42f1-b6d0-ccf4f8ea471d status: 200 OK code: 200 duration: "" @@ -1831,19 +2889,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:38 GMT + - Wed, 18 Oct 2023 16:42:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1853,7 +2911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7331ed2d-c9ee-4d83-a7e1-d8abdc9c33e1 + - a339f6dc-11c8-4b56-a991-3c1bf9016242 status: 200 OK code: 200 duration: "" @@ -1864,19 +2922,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:44 GMT + - Wed, 18 Oct 2023 16:42:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1886,7 +2944,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09a78826-2239-4c87-a7b7-3f5440549d21 + - 1c9b7870-45b3-4653-9c5c-773417ff9824 status: 200 OK code: 200 duration: "" @@ -1897,19 +2955,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:49 GMT + - Wed, 18 Oct 2023 16:42:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1919,7 +2977,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 838f3505-673d-42a7-b13e-b3fd3f810bc7 + - cb1a821e-af85-4dfb-a9d2-51aaaa3dc513 status: 200 OK code: 200 duration: "" @@ -1930,19 +2988,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:54 GMT + - Wed, 18 Oct 2023 16:42:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1952,7 +3010,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cab2fbcb-38ec-4cd6-ad85-348290483b78 + - ba579f8b-d8d3-4fe5-b556-342086e2a798 status: 200 OK code: 200 duration: "" @@ -1963,19 +3021,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:04:59 GMT + - Wed, 18 Oct 2023 16:42:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1985,7 +3043,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1665d6fe-49af-4b2b-b719-ccde5cad3063 + - 396770cb-22e8-4e1a-aa71-7fbf9adeebf5 status: 200 OK code: 200 duration: "" @@ -1996,19 +3054,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:04 GMT + - Wed, 18 Oct 2023 16:42:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2018,7 +3076,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c88a798-9034-478b-b40c-dc1b3b97ddfa + - c744486f-7ea1-4c98-8996-8f526a6079f7 status: 200 OK code: 200 duration: "" @@ -2029,19 +3087,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:35:51.232183Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "672" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:09 GMT + - Wed, 18 Oct 2023 16:42:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2051,7 +3109,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 997de861-e2c6-4bb3-9362-39a05d6395f9 + - b4336ddd-a0dc-4290-b946-6979185cb2ee status: 200 OK code: 200 duration: "" @@ -2062,19 +3120,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"scaling","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:00:42.691423Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:42:55.319289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "665" + - "670" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:14 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2084,7 +3142,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69fd33ae-94e9-48bb-9438-5eefaea69743 + - 33a82a8c-ce46-421a-8f4d-b4da5b1b8fc8 status: 200 OK code: 200 duration: "" @@ -2095,19 +3153,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:05:16.668846Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:37:14.958686Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "663" + - "1491" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:19 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2117,7 +3175,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7aeb8dd-8b9a-46be-922d-fac3375f4962 + - b2c08902-d468-46ec-a041-ec119ae1171e status: 200 OK code: 200 duration: "" @@ -2128,19 +3186,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:02:12.055059Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:42:55.319289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "1460" + - "670" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:19 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2150,7 +3208,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53ff18cc-1d66-4b28-b2f7-64f4cbb1e7d9 + - 779a2776-0418-4612-93fb-592413389083 status: 200 OK code: 200 duration: "" @@ -2161,19 +3219,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e/nodes?order_by=created_at_asc&page=1&pool_id=c8c0752f-ce31-47a8-8860-8351fc61dccd&status=unknown method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:05:16.668846Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"nodes":[{"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:43.584219Z","error_message":null,"id":"debc4f53-692b-4fbe-88f5-f1be005c206d","name":"scw-test-pool-zone-test-pool-zone-debc4f53692b","pool_id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","provider_id":"scaleway://instance/fr-par-2/f648fb2e-f7b7-4c73-9340-606aa12583c9","public_ip_v4":"51.159.131.178","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:42:55.300617Z"}],"total_count":1}' headers: Content-Length: - - "663" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:19 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2183,7 +3241,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3306be44-ed88-465a-a8d1-adf433e58058 + - 80bf134b-51b0-4b37-9a24-7b6b2d28b5fa status: 200 OK code: 200 duration: "" @@ -2194,19 +3252,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900/nodes?order_by=created_at_asc&page=1&pool_id=97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e method: GET response: - body: '{"nodes":[{"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:25.115834Z","error_message":null,"id":"58798724-a9b4-4269-913c-85543929ce5a","name":"scw-k8spoolconfigzone-default-58798724a9b44269","pool_id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","provider_id":"scaleway://instance/fr-par-2/250029f3-99f2-4fed-b84f-854bbe75589a","public_ip_v4":"51.159.157.102","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:16.654146Z"}],"total_count":1}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:37:14.958686Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "622" + - "1491" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:19 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2216,7 +3274,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfe67bce-c9bf-4796-a238-5738fd95541e + - 67a00b71-70fb-4523-b97e-77410af8b0d0 status: 200 OK code: 200 duration: "" @@ -2227,19 +3285,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:02:12.055059Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:42:55.319289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "1460" + - "670" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:19 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2249,7 +3307,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f48e79d-0795-445b-9661-a9cf4b0c9577 + - d760f8a8-e5ef-4385-99b8-97b27166d4da status: 200 OK code: 200 duration: "" @@ -2260,19 +3318,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3 method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:05:16.668846Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"created_at":"2023-10-18T16:35:44.620844Z","dhcp_enabled":true,"id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","name":"test-pool-zone","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:35:44.620844Z","id":"76cf3e27-3a4f-46a7-8873-d5b762f56fc0","subnet":"172.16.32.0/22","updated_at":"2023-10-18T16:35:44.620844Z"},{"created_at":"2023-10-18T16:35:44.620844Z","id":"85a6b9d1-979b-4c8e-84fd-e1f4e1b8b73c","subnet":"fd63:256c:45f7:5a8f::/64","updated_at":"2023-10-18T16:35:44.620844Z"}],"tags":[],"updated_at":"2023-10-18T16:35:44.620844Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "663" + - "715" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:19 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2282,7 +3340,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84fdc8eb-5b63-4fc8-86ec-69fc7ea21f99 + - c5645b67-0bf7-4f56-9e47-bbdba026165f status: 200 OK code: 200 duration: "" @@ -2293,19 +3351,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:02:12.055059Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:37:14.958686Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1460" + - "1491" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:20 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2315,7 +3373,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 272dae6b-21c4-4979-b010-f439d6fa648a + - 1e71070d-d8a0-4409-bdab-e849d3437195 status: 200 OK code: 200 duration: "" @@ -2326,19 +3384,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4c3Bvb2xjb25maWd6b25lIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9ha1YzVFVSQmVrMXNiMWhFVkUxNlRWUkJlRTVxUlhkTlJFRjZUV3h2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlNtbFFDbTFDYUU5ME1GTk9NbmxEVVVGSlEwTmtVVVEzVkZSVWRYaHNUbTFTYW5CeE1YTkdZa2hKZVZGMGFraEJjRlUxWkZwd2RtUjVTemRVYVRGdVNHdGhhak1LVVZGR01URkhiaXRGUkZCNFNUQk1Ta0kzYXl0d2F6RlpkalU1WTBwTGRrWklSVFFyU21GdmJWZ3lkME15ZDFORUwxWTVabTAxZHpjdmNucDRhM1l5TlFwcFUxbDRjMmR3T0ZGalExVnRSa0l4WkhOdU1EbFdOVVV2TmxaME9VTlBka2xWWTNVNE9VcDVaalYyYVd4elQzVlVPVGhhUkdOU05sUkJRMU55VUVaaUNuSXpNamxaVG1aSFJtdEdjVzlVYzFOaE1HdFhLMGxaVVVoTFkwcEpjbmt6VlVkelkxcE1hMFpLYTBSc2RIUkNaMlZ5TjNZeVRtbDNWVXg1SzFkWk1Hb0tkMmQ1WWtWVVkwdDRZWFY2YUdaWlYwUmFhMFpQTVRScFRIUjBhRmN5TjFaNmNYRXhUVTQzWWpobFRHMTBlamN3ZGl0aGJFUk1ZVWRYWlROdFptZFBOQXB6Y2xZNE1VeHNjMDV0Y0hKRVlYWllXRmRyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpOVXpSYVNTOHZNbGRNZDNCV0wyZ3JjbmhsZUd4VFNXcFVUSGROUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZDUjNCTU4ycEVMMm9yUkVJNE9VRmxTRmxvYURaRVJrWlplVU13WWpWTlpuSnZPWE5IYUVSeUswMVRWRU14WjNNck5Rb3lWRkF6VTJzMFIyeE1Va2xrYURGVFpHNUxLMUpQUWk4d0x6aFNWSEUzWm1ONGJVSmlaSE5yY1VkeVpIRTJOR0U1UWk5MVVrZE1aMHR2VGs1bVlYWXZDbFpIYW1oRE5qUllTMDUzY1M5elVpdEtkVmswVjNRclJVZEpXRmhpTTNrd1oxWldka3QyYjFkRFJqVnFNME1yWW1zeFRUVnNiWE5YUkRsSmJWVk5jemtLUTFKRGNubGtOakZ2Y1N0RU9HUXJZMGQwUVdkc2FVdFFkbk5aWjNsT2JWUnVXbmR0VnpSM1NFTnJXRmxNVDFCRVNEZHBVRFkwU1d4V1owVmhXV3RGZHdwSFpDdHRaMDh6Y1RCRWQwUTRiMHhUVDJSbWRsbzVUbk4zYkVKR2Mxb3pZMWhNWm01SWRVOWtSWEJuVFZKSFJpOUtZa1pqWlRSSWJuVmFiVUoxWXpRekNuUnZRbGh0TWpoUE9WRmtPVGd4WlRWTVpVOVJNM0ZwZEUxMGNIVnVPWEJTU0hVNE1Bb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly9iOTE0NmY2Zi1hN2NlLTQ2NGEtOTY1Yi00YmNiOTNjMzQ5MDAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AazhzcG9vbGNvbmZpZ3pvbmUKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4c3Bvb2xjb25maWd6b25lIgogICAgdXNlcjogazhzcG9vbGNvbmZpZ3pvbmUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkBrOHNwb29sY29uZmlnem9uZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4c3Bvb2xjb25maWd6b25lLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBZdHdMQkZGcldBclE4UXREZFVxZXZjQkxGcHQ0aWtlTGNGTFZXTFNXNEtuYzZZR05PSEoyaWFFbQ==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC16b25lIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTTFla05EUVdNclowRjNTVUpCWjBsQ1FVUkJUa0puYTNGb2EybEhPWGN3UWtGUmMwWkJSRUZXVFZKTmQwVlJXVVJXVVZGRVJYZHdjbVJYU213S1kyMDFiR1JIVm5wTlFqUllSRlJKZWsxVVFYaE9la1V5VFhwVk1FNHhiMWhFVkUxNlRWUkJlRTU2UlRKTmVsVXdUakZ2ZDBaVVJWUk5Ra1ZIUVRGVlJRcEJlRTFMWVROV2FWcFlTblZhV0ZKc1kzcERRMEZUU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZDUWxGQlJHZG5SVkJCUkVORFFWRnZRMmRuUlVKQlVIQmhDa05tUnl0Q1NqbDFaV2xZZEVSdFlVUkNRMUpaYUZWc1RIbGtOalUwWW5STlUzbHdkSEZTVUc1TGRFaEVVRzlWUVhGb2VrOUZhSGd3Y0V4VVJHaHFTRVFLU1ZoSWVrbFFObFJJUVRScVFqbFRWRmRHZEVWSWVYVXpVR3hVVVdOVFZFVTVWMWRWV1N0dVR6QndNelo1UkdkSksxSkZkelIzUkdWTWQxbFRPRGRLTlFwUmIwWTVTWGRIV1ZnMGNGVmxOVEJKZHpsYVMyUnhWV2czVkRkNlVFeDZWVGhZTkN0dGVFc3haSHBXUkRsalNsVkhOVWhQSzBWbVIyMVdWVGRtV21abENtVkVObGxKYUhwM1dYZDZRazFQYWxBMGVraFhXWG92WVhKNGNHcHhSR05zTUhkaFpHRXdTV05IYkhOdmRXaDFLMko2TWpabFExZHFlSFpQYURoYU5td0tTMloyUTJZdlNYWkJhVGxZTXpkWmJuRmpSM00wTVhSb1dVaGxiV3BqVkVaUlpqRnNkWFZCWVRNcmF6Z3ZTbEZoY2xWamVtVnljVkZDUldSTlNHaGxad3BsVEdnMVYzbE5kVTlCY1VKdFdFaFdUbGxyUTBGM1JVRkJZVTVEVFVWQmQwUm5XVVJXVWpCUVFWRklMMEpCVVVSQlowdHJUVUU0UjBFeFZXUkZkMFZDQ2k5M1VVWk5RVTFDUVdZNGQwaFJXVVJXVWpCUFFrSlpSVVpJSzBrd1YwZEhZbVpCYVRGUU5YUlBaV2haVEZCMlp5OXBSSFZOUVRCSFExTnhSMU5KWWpNS1JGRkZRa04zVlVGQk5FbENRVkZCSzNwTFoxQjZLM00wY0RORWNGaEhMM05WUWt4dFpXNDVXRFp3YjFrdmN6WkVTVGxGVkRocVEydDFibk4yUjBoQlpBcDZOR0pxUlhCdlFuRTJOVGRwVm1GMFpEbHVVMWhYZVZCb056VnJPR1Z5VlhRMWFTdEZTbEE0ZEhKd1R6aERXbVZaVDAxVk9WaEtOak51VjBwRWRESnVDbEpRVldoYVlYbGFiRmM0YUdFNGRrbHZkbEJ3TDJVM0t6WmhNRmN3WVVaeWRWVndlV2RtVkROUGRtY3pWMFoxYWxsWU1GVnBVV3Q2YmsxRWNHUkxLMFVLUzJFMk5FUTBaRTFXVDI5VU0wSllPRUp6TUZwbE4yeDNZVGxEY1cxcVluQjFTamxQTUhOWmRTOXVOVmRwYVRoa1QyMDFjV1l2TUhWeFpVWXpLMFpqU2dwcE5ITlNVRWRyZDNkelNXTmtNRGhGVFM5a1kwMXZjMkZPYVRCS01IcG9NRkV6UzFrMVpsUlhkSFpYYlRCRlZuTjFNSFIzV2xGclYzbFJWblptTTFsTENuTXhVa05NYUc5ck1sSTRiVWhpZURVMFJuWnhhR05OVGtKbmNuaE1ZUzlsTmtGc1NRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIHNlcnZlcjogaHR0cHM6Ly80ZjJiOTdhMS1kYjUyLTQ1YjEtOTdmMC03ODJlZGYzNDIyMGUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1wb29sLXpvbmUKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtcG9vbC16b25lIgogICAgdXNlcjogdGVzdC1wb29sLXpvbmUtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXBvb2wtem9uZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtcG9vbC16b25lLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB4YWRUdUVUYml3aHltSmFjNmJvQmFLUVUya0JnRXJyYk85T2l6M0hXbUl1azN1WFRUelZ5UDJOWA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2630" + - "2606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:20 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2348,7 +3406,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b058d0d-b3fc-4578-85c7-f346321f6524 + - 0a94a5e2-7c3b-49d5-8c6a-731166010d5a status: 200 OK code: 200 duration: "" @@ -2359,19 +3417,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: GET response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:05:16.668846Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"ready","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:42:55.319289Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "663" + - "670" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:20 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2381,7 +3439,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99b552c2-19ac-4d91-8077-19db944dcf27 + - 6f757003-2b35-496c-8bb8-a90f3e758bad status: 200 OK code: 200 duration: "" @@ -2392,19 +3450,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900/nodes?order_by=created_at_asc&page=1&pool_id=97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a&status=unknown + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e/nodes?order_by=created_at_asc&page=1&pool_id=c8c0752f-ce31-47a8-8860-8351fc61dccd&status=unknown method: GET response: - body: '{"nodes":[{"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"created_at":"2023-10-17T10:02:25.115834Z","error_message":null,"id":"58798724-a9b4-4269-913c-85543929ce5a","name":"scw-k8spoolconfigzone-default-58798724a9b44269","pool_id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","provider_id":"scaleway://instance/fr-par-2/250029f3-99f2-4fed-b84f-854bbe75589a","public_ip_v4":"51.159.157.102","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-17T10:05:16.654146Z"}],"total_count":1}' + body: '{"nodes":[{"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","PrivateNetworkUnavailable":"False","Ready":"True"},"created_at":"2023-10-18T16:37:43.584219Z","error_message":null,"id":"debc4f53-692b-4fbe-88f5-f1be005c206d","name":"scw-test-pool-zone-test-pool-zone-debc4f53692b","pool_id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","provider_id":"scaleway://instance/fr-par-2/f648fb2e-f7b7-4c73-9340-606aa12583c9","public_ip_v4":"51.159.131.178","public_ip_v6":null,"region":"fr-par","status":"ready","updated_at":"2023-10-18T16:42:55.300617Z"}],"total_count":1}' headers: Content-Length: - - "622" + - "659" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:20 GMT + - Wed, 18 Oct 2023 16:42:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2414,7 +3472,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a833e5ff-65bc-410d-a7c2-8dae2aa73fe4 + - 0dba0172-56b7-447f-b7f2-a5164f672bcf status: 200 OK code: 200 duration: "" @@ -2425,19 +3483,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c8c0752f-ce31-47a8-8860-8351fc61dccd method: DELETE response: - body: '{"autohealing":true,"autoscaling":true,"cluster_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","container_runtime":"containerd","created_at":"2023-10-17T10:00:42.541697Z","id":"97e5d6e1-b3a0-4c9d-a55b-1941e50bca4a","kubelet_args":{},"max_size":1,"min_size":1,"name":"default","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-17T10:05:20.893424390Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' + body: '{"autohealing":true,"autoscaling":true,"cluster_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","container_runtime":"containerd","created_at":"2023-10-18T16:35:51.224179Z","id":"c8c0752f-ce31-47a8-8860-8351fc61dccd","kubelet_args":{},"max_size":1,"min_size":1,"name":"test-pool-zone","node_type":"gp1_xs","placement_group_id":null,"public_ip_disabled":false,"region":"fr-par","root_volume_size":150000000000,"root_volume_type":"l_ssd","size":1,"status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"updated_at":"2023-10-18T16:42:58.676218873Z","upgrade_policy":{"max_surge":0,"max_unavailable":1},"version":"1.28.2","zone":"fr-par-2"}' headers: Content-Length: - - "669" + - "676" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:20 GMT + - Wed, 18 Oct 2023 16:42:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2447,7 +3505,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8da59187-2c9b-40f7-aa7c-4e9cf5f8774a + - 753f78c2-98df-4d1b-9e8e-79e60111c237 status: 200 OK code: 200 duration: "" @@ -2458,19 +3516,52 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e?with_additional_resources=true method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:05:20.974070502Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:42:58.749660268Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1497" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:42:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01617018-de72-483a-98ae-7bec7420d621 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:42:58.749660Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1466" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:21 GMT + - Wed, 18 Oct 2023 16:42:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2480,7 +3571,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49970dd1-f5d0-479e-a0ca-759e24beb992 + - c7e2138e-1d04-4ac9-a568-172e67188649 status: 200 OK code: 200 duration: "" @@ -2491,19 +3582,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:05:20.974071Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:42:58.749660Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1463" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:21 GMT + - Wed, 18 Oct 2023 16:43:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2513,7 +3604,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ad71cba-d949-4b8b-9e9b-aa148c438dd6 + - 3b355027-58f9-4137-80e3-80798bce941c status: 200 OK code: 200 duration: "" @@ -2524,19 +3615,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:05:20.974071Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:42:58.749660Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1463" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:26 GMT + - Wed, 18 Oct 2023 16:43:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2546,7 +3637,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc1f363b-ec47-4908-9ecc-7f0a17b735ab + - aae1030b-34e1-4693-b160-e33cb5e1a89d status: 200 OK code: 200 duration: "" @@ -2557,19 +3648,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://b9146f6f-a7ce-464a-965b-4bcb93c34900.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-17T10:00:26.914232Z","created_at":"2023-10-17T10:00:26.914232Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.b9146f6f-a7ce-464a-965b-4bcb93c34900.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","ingress":"none","name":"K8SPoolConfigZone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-17T10:05:20.974071Z","upgrade_available":false,"version":"1.28.2"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://4f2b97a1-db52-45b1-97f0-782edf34220e.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:35:45.787648Z","created_at":"2023-10-18T16:35:45.787648Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.4f2b97a1-db52-45b1-97f0-782edf34220e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"4f2b97a1-db52-45b1-97f0-782edf34220e","ingress":"none","name":"test-pool-zone","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","zone"],"type":"kapsule","updated_at":"2023-10-18T16:42:58.749660Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1463" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:31 GMT + - Wed, 18 Oct 2023 16:43:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2579,7 +3670,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ebce9ed-58f3-4eaf-bc2e-0f6b32adcc28 + - 156e44e8-5426-4ecc-bc58-c34f28fbbfb8 status: 200 OK code: 200 duration: "" @@ -2590,10 +3681,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","type":"not_found"}' headers: Content-Length: - "128" @@ -2602,7 +3693,40 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:36 GMT + - Wed, 18 Oct 2023 16:43:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8f4cd61-dc0d-4860-9fdc-e46e0b42cd7c + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3 + method: DELETE + response: + body: '{"message":"resource is not found","resource":"private_network","resource_id":"bbcadfae-9d75-4dbe-9e9d-7fcfa8ce40c3","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2612,7 +3736,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd5a6d24-c9b4-4e10-b29e-4a9e8da5c28b + - cbeaad63-76b5-43b4-a4ee-895dfb7e3fe8 status: 404 Not Found code: 404 duration: "" @@ -2623,10 +3747,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/b9146f6f-a7ce-464a-965b-4bcb93c34900 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4f2b97a1-db52-45b1-97f0-782edf34220e method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"b9146f6f-a7ce-464a-965b-4bcb93c34900","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"4f2b97a1-db52-45b1-97f0-782edf34220e","type":"not_found"}' headers: Content-Length: - "128" @@ -2635,7 +3759,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Oct 2023 10:05:36 GMT + - Wed, 18 Oct 2023 16:43:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2645,7 +3769,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85009d9b-0eda-4259-b431-9294211a296d + - ad8a1cd5-89ec-4570-8b58-b3471b0b504e status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-private-network.cassette.yaml b/scaleway/testdata/k8s-cluster-private-network.cassette.yaml index c1f3305d50..8f1a186d02 100644 --- a/scaleway/testdata/k8s-cluster-private-network.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-private-network.cassette.yaml @@ -12,11 +12,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 17:26:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,7 +34,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdebcd0c-10ca-454d-bacd-d7b4f51cc787 + - 5dbc4fce-bf7f-4083-925b-f5627c2911f2 status: 200 OK code: 200 duration: "" @@ -50,16 +50,16 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"created_at":"2023-09-01T16:16:47.525596Z","dhcp_enabled":true,"id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-09-01T16:16:47.525596Z","id":"78591cb1-e4df-4dca-aa24-a019bd646da5","subnet":"172.16.16.0/22","updated_at":"2023-09-01T16:16:47.525596Z"},{"created_at":"2023-09-01T16:16:47.525596Z","id":"75e77059-7a58-4855-84eb-cf56a4adc904","subnet":"fd63:256c:45f7:b6b2::/64","updated_at":"2023-09-01T16:16:47.525596Z"}],"tags":[],"updated_at":"2023-09-01T16:16:47.525596Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2023-10-18T17:26:43.392150Z","dhcp_enabled":true,"id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:26:43.392150Z","id":"d500e056-6397-47eb-9654-4402c581487b","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:26:43.392150Z"},{"created_at":"2023-10-18T17:26:43.392150Z","id":"b26df8da-60fc-4ed0-a991-3086679d352c","subnet":"fd63:256c:45f7:8c5c::/64","updated_at":"2023-10-18T17:26:43.392150Z"}],"tags":[],"updated_at":"2023-10-18T17:26:43.392150Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "703" + - "720" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:48 GMT + - Wed, 18 Oct 2023 17:26:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +69,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a89254f5-a862-4e79-a317-7eb12c32dea3 + - 909c34cd-dc66-4cac-ac3a-6f2d62ef4bd2 status: 200 OK code: 200 duration: "" @@ -80,19 +80,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b1bba701-2e38-4fdd-8c0b-512111a1b36c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6a3be534-eff7-48ad-bc55-d55fc9d0d221 method: GET response: - body: '{"created_at":"2023-09-01T16:16:47.525596Z","dhcp_enabled":true,"id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-09-01T16:16:47.525596Z","id":"78591cb1-e4df-4dca-aa24-a019bd646da5","subnet":"172.16.16.0/22","updated_at":"2023-09-01T16:16:47.525596Z"},{"created_at":"2023-09-01T16:16:47.525596Z","id":"75e77059-7a58-4855-84eb-cf56a4adc904","subnet":"fd63:256c:45f7:b6b2::/64","updated_at":"2023-09-01T16:16:47.525596Z"}],"tags":[],"updated_at":"2023-09-01T16:16:47.525596Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2023-10-18T17:26:43.392150Z","dhcp_enabled":true,"id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:26:43.392150Z","id":"d500e056-6397-47eb-9654-4402c581487b","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:26:43.392150Z"},{"created_at":"2023-10-18T17:26:43.392150Z","id":"b26df8da-60fc-4ed0-a991-3086679d352c","subnet":"fd63:256c:45f7:8c5c::/64","updated_at":"2023-10-18T17:26:43.392150Z"}],"tags":[],"updated_at":"2023-10-18T17:26:43.392150Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "703" + - "720" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:48 GMT + - Wed, 18 Oct 2023 17:26:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,12 +102,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1d24f9b-af33-4b2e-8c98-63bafc48045e + - d6334baf-89de-4521-86a1-d4dc7e4bddb0 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"k8s-private-network-cluster","description":"","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"version":"1.28.0","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"k8s-private-network-cluster","description":"","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221"}' form: {} headers: Content-Type: @@ -118,16 +118,16 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621724521Z","created_at":"2023-09-01T16:16:48.621724521Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:16:48.629821350Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:44.740738233Z","created_at":"2023-10-18T17:26:44.740738233Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e8c177fa-ad15-4ba8-ab2a-f530ce4268e7","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:44.793300415Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1448" + - "1527" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:48 GMT + - Wed, 18 Oct 2023 17:26:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -137,7 +137,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92a318f0-1afd-4373-9691-d7b37f4c27c7 + - f6e8c5b6-30fa-475c-ae7e-aa0c067ffa6d status: 200 OK code: 200 duration: "" @@ -148,19 +148,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:16:48.629821Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:44.740738Z","created_at":"2023-10-18T17:26:44.740738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e8c177fa-ad15-4ba8-ab2a-f530ce4268e7","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:44.793300Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1439" + - "1518" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:48 GMT + - Wed, 18 Oct 2023 17:26:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -170,7 +170,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f7690a9-02c9-491a-8457-6ace100eb4fa + - 3151ee66-029e-4ac9-a33c-fbee1c45581f status: 200 OK code: 200 duration: "" @@ -181,19 +181,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:16:50.339018Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:44.740738Z","created_at":"2023-10-18T17:26:44.740738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e8c177fa-ad15-4ba8-ab2a-f530ce4268e7","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:46.757593Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1444" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:53 GMT + - Wed, 18 Oct 2023 17:26:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -203,7 +203,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cc4049a-fb74-4134-819f-726ba8fc31ba + - eaa307dc-f3c9-4f31-a3fa-14be4acf1e12 status: 200 OK code: 200 duration: "" @@ -214,19 +214,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:16:50.339018Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:44.740738Z","created_at":"2023-10-18T17:26:44.740738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e8c177fa-ad15-4ba8-ab2a-f530ce4268e7","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:46.757593Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1444" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:53 GMT + - Wed, 18 Oct 2023 17:26:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -236,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ffd3fe8-731f-4699-bf39-93a5c9e8651e + - 5e47300b-611b-4171-8096-8addd5b69c07 status: 200 OK code: 200 duration: "" @@ -247,19 +247,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlpNVTFHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRmt4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVJoQ2tKRWRXVkxjbk5WY0ZwM0syMURjSE5VUm1SamQwaGFiR2xLZVhJdlMyNHlUWFYzYjNOdFEyb3paVTlTVEU5a01sVlhXQzlqVjNSMVVERjZiRGt5VlRjS1NrdFJVMnRDV2tSR1ozZHliSHBaTUZsaWFGSXdWMjU0VjBWUWNVRkVaa3hCUlZGTVMyZHdVRmxSTmpsT2RqRkdURkJvVkRab1VtTndSWGhsUXpoU2FRcDZkMmR0V0ZVcmRtTlBVVlpXWWtKcGEyb3ZaM0IzUnpWWllYUjVRMVo1Wkd4cFVsVXdSblY2U1VwS01WRmlObVl3YTJwRVRpOXBjSE5FZHk5b1NHVlNDa1ZWTW1SNU9GVTJhakEwU0VrdlkwaEpVRWR1VkdwT09WcFJSM0ZVU2tKS1lVRkxkaXQ2VXpKRFVVWmtjV0V5U1hWVFZuRXpWa3hHVkV4alUybFBlRVlLVkhwUGJtaEhMemwxWnpKSmMwY3lOMUZKV0RBM2FrNURjbE5ZZFdWUGVXcHNkRWRYUm1GV09GZDFRV3R2VUVsdmNtNTNlWEpRVFZSUVRETkJRWGM0WlFwVE4zaHRieXRpWld4M1VHWnJiV2wzVDFoTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1RWb3lhak5WTTJzMlNVRjNZVXRKV0ZCWVpXRklXbVp6V2l0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFdrVnBNM0UwVGtrMVdHMVhhMVZ4YXpKMmNtNVFlSE5ITHpOa09IUklNUzl6UlVkSU5HNTRXRlJKY1doMFdESTFRd3BNYkUxbVZHZFFNMVZvZERZMldXZExValY2TjFOWlVUUXlRVVpYU0RZMFdIbDBNRlIxWVcxcVoxSmFabVJSVnpSUGFXWlNRakFyZGtWS1NXNVdOR0ZWQ2tsU1pWTndObGxDTjJsWk5UbHVjMWhVWmxCeWVIcGhaVGhITW1SSEwybEVibVZ0VGpreEwydG1OaTg1ZFZreFowbG9NMDVzTkVjMmVreFlOWEZ1Y3pJS1prWlNWV2xUU1M5VE56aFFkM0ZPVjA1RWJVc3JNSEkxSzAxTVp6bG9SbFZwWWpCbFEycFRjR2RIY1dOUmNqbFdRMDlyYTA5WVZHNTNOVEl3VHpCTGRRcFhUR2xpU1V4c1MyVkthRmxTTldWcFRHbHROV1JVY1dOWmFuTnhjVlY2ZWtzeE5FOUhVWFJHTUN0MUwwWXhZblY0YlZkWGNGWXJSUzh6TW1sU1ZqaFFDbXh0TkVsS1ZtVk5jRlozZHpaTE4ybGFXWEZTYW10TmIxWnpjMVpxTUVwM2MycFlVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vM2I3ZDEyZGItY2NmNS00YWYxLWFjOTItYTUxYjk1ODZmMmM0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEaDk4a0JYME9yWjU0NUNVdjRTbXBVc040eVVXaFU5MkE0QmlHNkZlNUFPc0NEVVY1M0thQmRJaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVelRXcFpNRTVzYjFoRVZFMTZUVlJCZUU1NlJUTk5hbGt3VG14dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTbVpYQ2tSUGFuUXpObnBsZDBJdlVuRlNZMkp6Tlc1M1RrSkJSRkZ5VEZGcmNtVkVRVzhyZUVSVGIwOWhZMEo0Y3pnelEwcDVlVmhWU0M5eE9XSkZka1pTV1hrS1NYVlBkSEJqV21GUE4wbGFLMlJZWjBjdlYxZHpLMnR3Y2xaVVVuZGFURWhpUjJRNWFVWnZaM01yZUVGbWEzcEJXbmd6VGtWTVdEUmxXR00wUm5Vck9RcHFTVXBCZFdWTmRXMUVOMXBhWkVKUEsyUTFiemhCWWxSQ1MyRkRPVUZPVG0wdlRuTlpNR1FyZDFwYWJUbFZVRE1yVURCU2RHUTBTa3ByYTJ4VlF6ZEtDalpxT0d0V1FXVTJOMEl3Vkd4U2VXNDRZWFZSTlVsck1rdEtiRnB6UmpsdlRXdHhWbE5VTkRoNmRFOXZaM1ZJUldSU1NrbHpUbU5GWjNNNWJIVlhXSFVLZGl0Vk9FUk5aVFV6TW1Ka2VFRTVkV2RrYjBaclpsUkhOWFpQYVhkTFJqWjJaMFJSTVRKbmN6SmFXa292YkVoUFIyMWtlVEl2VDNWcFJuUkdWaXR2TndwdVJXMXlNVTgzWVRGeWNIbE5ORXhJUkd3NFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTFdtWk9NRlpJZGxsTVQxcE1UVEJtTlRVemFHYzBZVWgxTHpKTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1l6SjVNVXBWVGxONVNVaExVVWg2UjFwNE16ZE1Za28zZWswckwwUkNNRTByZVRCR2NUQjBiWE5YUVRWaGVsSk5jUW94VkVwT1RYbFVNM2d4Y0hwU01XaDBVMkpuZDFaRVdVZFZRWFZLVTNOdGNVUnVWVEI1VkdkUWFtSmhSMWR1ZVc1ck56ZERXbkExUzA4MFRtMTZhMUpFQ25RcmVUQlBabVphV21GWlJXdEVXVTUyVGtkMlZsQk9hemh5WkVwWWRVdFZPRUpGV0hGa2JFMXNlVFI0ZVRGdkwyMVJRVGRvZUZOWGN5ODFVR1ZuYTA4S1VXNXlSVGMyY0RGS2VXVlFkWE5aTkVSbk5VbHZReTlDT0VSQmJEZE9NM2RpY1ZSTldXUktTazV3YTJkdlEzWlpVVk5CZDFOSFMydDNibXhhV2s1UVdncGpVR3Q2ZFVvemVtRndkRFExUW5WWVdrRnRMM3BtTUVzck5GWlZPVmxxUzI1clRHZE5SMk0yZEd0SU9GQjFZbmh3Vkhoa2JtdzJTV0p5ZEVZMFUzZFdDa0UwWjA1eU9UbEJPVGxVU0ZFNVltUnVUazlVVUUxT0sydHBMM0JQVm1WT1J5dHhZUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZThjMTc3ZmEtYWQxNS00YmE4LWFiMmEtZjUzMGNlNDI2OGU3LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB5Y3NJQTY5ZVZob0E4WWZCYTVKb24zOEQyTzlUU01Vc3J2b1dRUFpkeWNVR3dCOVo3Rnp0M1RVMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2708" + - "2710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:53 GMT + - Wed, 18 Oct 2023 17:26:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,7 +269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04c5a587-560a-46e0-9685-d7571dfc3504 + - ad8b6cb3-a5da-43d9-b3a0-9d6e837f18ac status: 200 OK code: 200 duration: "" @@ -280,19 +280,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:16:50.339018Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:44.740738Z","created_at":"2023-10-18T17:26:44.740738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e8c177fa-ad15-4ba8-ab2a-f530ce4268e7","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:46.757593Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1444" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:53 GMT + - Wed, 18 Oct 2023 17:26:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +302,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52110aa3-5a74-4a88-b38e-2665be0a20fc + - 73b6f873-c564-4f81-8d21-2ecc70d2cf7f status: 200 OK code: 200 duration: "" @@ -313,19 +313,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b1bba701-2e38-4fdd-8c0b-512111a1b36c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6a3be534-eff7-48ad-bc55-d55fc9d0d221 method: GET response: - body: '{"created_at":"2023-09-01T16:16:47.525596Z","dhcp_enabled":true,"id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-09-01T16:16:47.525596Z","id":"78591cb1-e4df-4dca-aa24-a019bd646da5","subnet":"172.16.16.0/22","updated_at":"2023-09-01T16:16:47.525596Z"},{"created_at":"2023-09-01T16:16:47.525596Z","id":"75e77059-7a58-4855-84eb-cf56a4adc904","subnet":"fd63:256c:45f7:b6b2::/64","updated_at":"2023-09-01T16:16:47.525596Z"}],"tags":[],"updated_at":"2023-09-01T16:16:47.525596Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2023-10-18T17:26:43.392150Z","dhcp_enabled":true,"id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:26:43.392150Z","id":"d500e056-6397-47eb-9654-4402c581487b","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:26:43.392150Z"},{"created_at":"2023-10-18T17:26:43.392150Z","id":"b26df8da-60fc-4ed0-a991-3086679d352c","subnet":"fd63:256c:45f7:8c5c::/64","updated_at":"2023-10-18T17:26:43.392150Z"}],"tags":[],"updated_at":"2023-10-18T17:26:43.392150Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "703" + - "720" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:54 GMT + - Wed, 18 Oct 2023 17:26:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -335,7 +335,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 751f7410-9b0c-4841-ab99-5af37ff9971b + - 6044e60d-8359-4e6d-9c97-6f102a52b79d status: 200 OK code: 200 duration: "" @@ -346,19 +346,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b1bba701-2e38-4fdd-8c0b-512111a1b36c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7 method: GET response: - body: '{"created_at":"2023-09-01T16:16:47.525596Z","dhcp_enabled":true,"id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-09-01T16:16:47.525596Z","id":"78591cb1-e4df-4dca-aa24-a019bd646da5","subnet":"172.16.16.0/22","updated_at":"2023-09-01T16:16:47.525596Z"},{"created_at":"2023-09-01T16:16:47.525596Z","id":"75e77059-7a58-4855-84eb-cf56a4adc904","subnet":"fd63:256c:45f7:b6b2::/64","updated_at":"2023-09-01T16:16:47.525596Z"}],"tags":[],"updated_at":"2023-09-01T16:16:47.525596Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:44.740738Z","created_at":"2023-10-18T17:26:44.740738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e8c177fa-ad15-4ba8-ab2a-f530ce4268e7","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:46.757593Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "703" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:54 GMT + - Wed, 18 Oct 2023 17:26:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -368,7 +368,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 709c0b35-224a-4779-9e90-41d6ea0ffec5 + - 59bfb245-bf58-4c39-b241-636aaddcf975 status: 200 OK code: 200 duration: "" @@ -379,19 +379,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6a3be534-eff7-48ad-bc55-d55fc9d0d221 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:16:50.339018Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T17:26:43.392150Z","dhcp_enabled":true,"id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:26:43.392150Z","id":"d500e056-6397-47eb-9654-4402c581487b","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:26:43.392150Z"},{"created_at":"2023-10-18T17:26:43.392150Z","id":"b26df8da-60fc-4ed0-a991-3086679d352c","subnet":"fd63:256c:45f7:8c5c::/64","updated_at":"2023-10-18T17:26:43.392150Z"}],"tags":[],"updated_at":"2023-10-18T17:26:43.392150Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1444" + - "720" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:54 GMT + - Wed, 18 Oct 2023 17:26:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +401,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f9db453-cf70-4b86-9822-a909741dec15 + - 8913b8fc-3bb1-4015-8697-5d2f54afdee4 status: 200 OK code: 200 duration: "" @@ -412,19 +412,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlpNVTFHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRmt4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVJoQ2tKRWRXVkxjbk5WY0ZwM0syMURjSE5VUm1SamQwaGFiR2xLZVhJdlMyNHlUWFYzYjNOdFEyb3paVTlTVEU5a01sVlhXQzlqVjNSMVVERjZiRGt5VlRjS1NrdFJVMnRDV2tSR1ozZHliSHBaTUZsaWFGSXdWMjU0VjBWUWNVRkVaa3hCUlZGTVMyZHdVRmxSTmpsT2RqRkdURkJvVkRab1VtTndSWGhsUXpoU2FRcDZkMmR0V0ZVcmRtTlBVVlpXWWtKcGEyb3ZaM0IzUnpWWllYUjVRMVo1Wkd4cFVsVXdSblY2U1VwS01WRmlObVl3YTJwRVRpOXBjSE5FZHk5b1NHVlNDa1ZWTW1SNU9GVTJhakEwU0VrdlkwaEpVRWR1VkdwT09WcFJSM0ZVU2tKS1lVRkxkaXQ2VXpKRFVVWmtjV0V5U1hWVFZuRXpWa3hHVkV4alUybFBlRVlLVkhwUGJtaEhMemwxWnpKSmMwY3lOMUZKV0RBM2FrNURjbE5ZZFdWUGVXcHNkRWRYUm1GV09GZDFRV3R2VUVsdmNtNTNlWEpRVFZSUVRETkJRWGM0WlFwVE4zaHRieXRpWld4M1VHWnJiV2wzVDFoTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1RWb3lhak5WTTJzMlNVRjNZVXRKV0ZCWVpXRklXbVp6V2l0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFdrVnBNM0UwVGtrMVdHMVhhMVZ4YXpKMmNtNVFlSE5ITHpOa09IUklNUzl6UlVkSU5HNTRXRlJKY1doMFdESTFRd3BNYkUxbVZHZFFNMVZvZERZMldXZExValY2TjFOWlVUUXlRVVpYU0RZMFdIbDBNRlIxWVcxcVoxSmFabVJSVnpSUGFXWlNRakFyZGtWS1NXNVdOR0ZWQ2tsU1pWTndObGxDTjJsWk5UbHVjMWhVWmxCeWVIcGhaVGhITW1SSEwybEVibVZ0VGpreEwydG1OaTg1ZFZreFowbG9NMDVzTkVjMmVreFlOWEZ1Y3pJS1prWlNWV2xUU1M5VE56aFFkM0ZPVjA1RWJVc3JNSEkxSzAxTVp6bG9SbFZwWWpCbFEycFRjR2RIY1dOUmNqbFdRMDlyYTA5WVZHNTNOVEl3VHpCTGRRcFhUR2xpU1V4c1MyVkthRmxTTldWcFRHbHROV1JVY1dOWmFuTnhjVlY2ZWtzeE5FOUhVWFJHTUN0MUwwWXhZblY0YlZkWGNGWXJSUzh6TW1sU1ZqaFFDbXh0TkVsS1ZtVk5jRlozZHpaTE4ybGFXWEZTYW10TmIxWnpjMVpxTUVwM2MycFlVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vM2I3ZDEyZGItY2NmNS00YWYxLWFjOTItYTUxYjk1ODZmMmM0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEaDk4a0JYME9yWjU0NUNVdjRTbXBVc040eVVXaFU5MkE0QmlHNkZlNUFPc0NEVVY1M0thQmRJaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:44.740738Z","created_at":"2023-10-18T17:26:44.740738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e8c177fa-ad15-4ba8-ab2a-f530ce4268e7","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:46.757593Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2708" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:54 GMT + - Wed, 18 Oct 2023 17:26:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +434,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d64a6e97-6e33-4c92-ac19-7957c87a767a + - d1ff4782-3bde-44b9-a0c8-0567063086b2 status: 200 OK code: 200 duration: "" @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b1bba701-2e38-4fdd-8c0b-512111a1b36c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7/kubeconfig method: GET response: - body: '{"created_at":"2023-09-01T16:16:47.525596Z","dhcp_enabled":true,"id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-09-01T16:16:47.525596Z","id":"78591cb1-e4df-4dca-aa24-a019bd646da5","subnet":"172.16.16.0/22","updated_at":"2023-09-01T16:16:47.525596Z"},{"created_at":"2023-09-01T16:16:47.525596Z","id":"75e77059-7a58-4855-84eb-cf56a4adc904","subnet":"fd63:256c:45f7:b6b2::/64","updated_at":"2023-09-01T16:16:47.525596Z"}],"tags":[],"updated_at":"2023-09-01T16:16:47.525596Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVelRXcFpNRTVzYjFoRVZFMTZUVlJCZUU1NlJUTk5hbGt3VG14dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTbVpYQ2tSUGFuUXpObnBsZDBJdlVuRlNZMkp6Tlc1M1RrSkJSRkZ5VEZGcmNtVkVRVzhyZUVSVGIwOWhZMEo0Y3pnelEwcDVlVmhWU0M5eE9XSkZka1pTV1hrS1NYVlBkSEJqV21GUE4wbGFLMlJZWjBjdlYxZHpLMnR3Y2xaVVVuZGFURWhpUjJRNWFVWnZaM01yZUVGbWEzcEJXbmd6VGtWTVdEUmxXR00wUm5Vck9RcHFTVXBCZFdWTmRXMUVOMXBhWkVKUEsyUTFiemhCWWxSQ1MyRkRPVUZPVG0wdlRuTlpNR1FyZDFwYWJUbFZVRE1yVURCU2RHUTBTa3ByYTJ4VlF6ZEtDalpxT0d0V1FXVTJOMEl3Vkd4U2VXNDRZWFZSTlVsck1rdEtiRnB6UmpsdlRXdHhWbE5VTkRoNmRFOXZaM1ZJUldSU1NrbHpUbU5GWjNNNWJIVlhXSFVLZGl0Vk9FUk5aVFV6TW1Ka2VFRTVkV2RrYjBaclpsUkhOWFpQYVhkTFJqWjJaMFJSTVRKbmN6SmFXa292YkVoUFIyMWtlVEl2VDNWcFJuUkdWaXR2TndwdVJXMXlNVTgzWVRGeWNIbE5ORXhJUkd3NFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTFdtWk9NRlpJZGxsTVQxcE1UVEJtTlRVemFHYzBZVWgxTHpKTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1l6SjVNVXBWVGxONVNVaExVVWg2UjFwNE16ZE1Za28zZWswckwwUkNNRTByZVRCR2NUQjBiWE5YUVRWaGVsSk5jUW94VkVwT1RYbFVNM2d4Y0hwU01XaDBVMkpuZDFaRVdVZFZRWFZLVTNOdGNVUnVWVEI1VkdkUWFtSmhSMWR1ZVc1ck56ZERXbkExUzA4MFRtMTZhMUpFQ25RcmVUQlBabVphV21GWlJXdEVXVTUyVGtkMlZsQk9hemh5WkVwWWRVdFZPRUpGV0hGa2JFMXNlVFI0ZVRGdkwyMVJRVGRvZUZOWGN5ODFVR1ZuYTA4S1VXNXlSVGMyY0RGS2VXVlFkWE5aTkVSbk5VbHZReTlDT0VSQmJEZE9NM2RpY1ZSTldXUktTazV3YTJkdlEzWlpVVk5CZDFOSFMydDNibXhhV2s1UVdncGpVR3Q2ZFVvemVtRndkRFExUW5WWVdrRnRMM3BtTUVzck5GWlZPVmxxUzI1clRHZE5SMk0yZEd0SU9GQjFZbmh3Vkhoa2JtdzJTV0p5ZEVZMFUzZFdDa0UwWjA1eU9UbEJPVGxVU0ZFNVltUnVUazlVVUUxT0sydHBMM0JQVm1WT1J5dHhZUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZThjMTc3ZmEtYWQxNS00YmE4LWFiMmEtZjUzMGNlNDI2OGU3LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB5Y3NJQTY5ZVZob0E4WWZCYTVKb24zOEQyTzlUU01Vc3J2b1dRUFpkeWNVR3dCOVo3Rnp0M1RVMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "703" + - "2710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:54 GMT + - Wed, 18 Oct 2023 17:26:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a05cde1f-95fc-4128-b94b-bda576152335 + - 9691d707-8f57-4ecc-9352-4ebc1e7611cc status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6a3be534-eff7-48ad-bc55-d55fc9d0d221 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:16:50.339018Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T17:26:43.392150Z","dhcp_enabled":true,"id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:26:43.392150Z","id":"d500e056-6397-47eb-9654-4402c581487b","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:26:43.392150Z"},{"created_at":"2023-10-18T17:26:43.392150Z","id":"b26df8da-60fc-4ed0-a991-3086679d352c","subnet":"fd63:256c:45f7:8c5c::/64","updated_at":"2023-10-18T17:26:43.392150Z"}],"tags":[],"updated_at":"2023-10-18T17:26:43.392150Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1444" + - "720" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:54 GMT + - Wed, 18 Oct 2023 17:26:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +500,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1d31b2b-b355-4224-9fd1-b705a7f6dbf9 + - e71d7c0a-9709-4725-bfc7-771f11bf2eae status: 200 OK code: 200 duration: "" @@ -511,19 +511,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlpNVTFHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRmt4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVJoQ2tKRWRXVkxjbk5WY0ZwM0syMURjSE5VUm1SamQwaGFiR2xLZVhJdlMyNHlUWFYzYjNOdFEyb3paVTlTVEU5a01sVlhXQzlqVjNSMVVERjZiRGt5VlRjS1NrdFJVMnRDV2tSR1ozZHliSHBaTUZsaWFGSXdWMjU0VjBWUWNVRkVaa3hCUlZGTVMyZHdVRmxSTmpsT2RqRkdURkJvVkRab1VtTndSWGhsUXpoU2FRcDZkMmR0V0ZVcmRtTlBVVlpXWWtKcGEyb3ZaM0IzUnpWWllYUjVRMVo1Wkd4cFVsVXdSblY2U1VwS01WRmlObVl3YTJwRVRpOXBjSE5FZHk5b1NHVlNDa1ZWTW1SNU9GVTJhakEwU0VrdlkwaEpVRWR1VkdwT09WcFJSM0ZVU2tKS1lVRkxkaXQ2VXpKRFVVWmtjV0V5U1hWVFZuRXpWa3hHVkV4alUybFBlRVlLVkhwUGJtaEhMemwxWnpKSmMwY3lOMUZKV0RBM2FrNURjbE5ZZFdWUGVXcHNkRWRYUm1GV09GZDFRV3R2VUVsdmNtNTNlWEpRVFZSUVRETkJRWGM0WlFwVE4zaHRieXRpWld4M1VHWnJiV2wzVDFoTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1RWb3lhak5WTTJzMlNVRjNZVXRKV0ZCWVpXRklXbVp6V2l0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFdrVnBNM0UwVGtrMVdHMVhhMVZ4YXpKMmNtNVFlSE5ITHpOa09IUklNUzl6UlVkSU5HNTRXRlJKY1doMFdESTFRd3BNYkUxbVZHZFFNMVZvZERZMldXZExValY2TjFOWlVUUXlRVVpYU0RZMFdIbDBNRlIxWVcxcVoxSmFabVJSVnpSUGFXWlNRakFyZGtWS1NXNVdOR0ZWQ2tsU1pWTndObGxDTjJsWk5UbHVjMWhVWmxCeWVIcGhaVGhITW1SSEwybEVibVZ0VGpreEwydG1OaTg1ZFZreFowbG9NMDVzTkVjMmVreFlOWEZ1Y3pJS1prWlNWV2xUU1M5VE56aFFkM0ZPVjA1RWJVc3JNSEkxSzAxTVp6bG9SbFZwWWpCbFEycFRjR2RIY1dOUmNqbFdRMDlyYTA5WVZHNTNOVEl3VHpCTGRRcFhUR2xpU1V4c1MyVkthRmxTTldWcFRHbHROV1JVY1dOWmFuTnhjVlY2ZWtzeE5FOUhVWFJHTUN0MUwwWXhZblY0YlZkWGNGWXJSUzh6TW1sU1ZqaFFDbXh0TkVsS1ZtVk5jRlozZHpaTE4ybGFXWEZTYW10TmIxWnpjMVpxTUVwM2MycFlVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vM2I3ZDEyZGItY2NmNS00YWYxLWFjOTItYTUxYjk1ODZmMmM0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEaDk4a0JYME9yWjU0NUNVdjRTbXBVc040eVVXaFU5MkE0QmlHNkZlNUFPc0NEVVY1M0thQmRJaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:44.740738Z","created_at":"2023-10-18T17:26:44.740738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e8c177fa-ad15-4ba8-ab2a-f530ce4268e7","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:46.757593Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2708" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:54 GMT + - Wed, 18 Oct 2023 17:26:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,75 +533,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9816f43-8762-43b4-afa9-36cec9203418 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4/migrate-to-private-network - method: POST - response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:16:54.937337899Z","upgrade_available":false,"version":"1.28.0"}' - headers: - Content-Length: - - "1476" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 01 Sep 2023 16:16:54 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 312a2276-6ed8-40fd-a499-63f5256ef72c - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 - method: GET - response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:16:54.937338Z","upgrade_available":false,"version":"1.28.0"}' - headers: - Content-Length: - - "1473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 01 Sep 2023 16:16:55 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 78ca21fd-3d8b-49cb-b322-496afa7d9684 + - 78f60483-6b62-4533-802d-648b5623099d status: 200 OK code: 200 duration: "" @@ -612,19 +544,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:16:56.082187Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVelRXcFpNRTVzYjFoRVZFMTZUVlJCZUU1NlJUTk5hbGt3VG14dmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJTbVpYQ2tSUGFuUXpObnBsZDBJdlVuRlNZMkp6Tlc1M1RrSkJSRkZ5VEZGcmNtVkVRVzhyZUVSVGIwOWhZMEo0Y3pnelEwcDVlVmhWU0M5eE9XSkZka1pTV1hrS1NYVlBkSEJqV21GUE4wbGFLMlJZWjBjdlYxZHpLMnR3Y2xaVVVuZGFURWhpUjJRNWFVWnZaM01yZUVGbWEzcEJXbmd6VGtWTVdEUmxXR00wUm5Vck9RcHFTVXBCZFdWTmRXMUVOMXBhWkVKUEsyUTFiemhCWWxSQ1MyRkRPVUZPVG0wdlRuTlpNR1FyZDFwYWJUbFZVRE1yVURCU2RHUTBTa3ByYTJ4VlF6ZEtDalpxT0d0V1FXVTJOMEl3Vkd4U2VXNDRZWFZSTlVsck1rdEtiRnB6UmpsdlRXdHhWbE5VTkRoNmRFOXZaM1ZJUldSU1NrbHpUbU5GWjNNNWJIVlhXSFVLZGl0Vk9FUk5aVFV6TW1Ka2VFRTVkV2RrYjBaclpsUkhOWFpQYVhkTFJqWjJaMFJSTVRKbmN6SmFXa292YkVoUFIyMWtlVEl2VDNWcFJuUkdWaXR2TndwdVJXMXlNVTgzWVRGeWNIbE5ORXhJUkd3NFEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTFdtWk9NRlpJZGxsTVQxcE1UVEJtTlRVemFHYzBZVWgxTHpKTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ1l6SjVNVXBWVGxONVNVaExVVWg2UjFwNE16ZE1Za28zZWswckwwUkNNRTByZVRCR2NUQjBiWE5YUVRWaGVsSk5jUW94VkVwT1RYbFVNM2d4Y0hwU01XaDBVMkpuZDFaRVdVZFZRWFZLVTNOdGNVUnVWVEI1VkdkUWFtSmhSMWR1ZVc1ck56ZERXbkExUzA4MFRtMTZhMUpFQ25RcmVUQlBabVphV21GWlJXdEVXVTUyVGtkMlZsQk9hemh5WkVwWWRVdFZPRUpGV0hGa2JFMXNlVFI0ZVRGdkwyMVJRVGRvZUZOWGN5ODFVR1ZuYTA4S1VXNXlSVGMyY0RGS2VXVlFkWE5aTkVSbk5VbHZReTlDT0VSQmJEZE9NM2RpY1ZSTldXUktTazV3YTJkdlEzWlpVVk5CZDFOSFMydDNibXhhV2s1UVdncGpVR3Q2ZFVvemVtRndkRFExUW5WWVdrRnRMM3BtTUVzck5GWlZPVmxxUzI1clRHZE5SMk0yZEd0SU9GQjFZbmh3Vkhoa2JtdzJTV0p5ZEVZMFUzZFdDa0UwWjA1eU9UbEJPVGxVU0ZFNVltUnVUazlVVUUxT0sydHBMM0JQVm1WT1J5dHhZUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZThjMTc3ZmEtYWQxNS00YmE4LWFiMmEtZjUzMGNlNDI2OGU3LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiB5Y3NJQTY5ZVZob0E4WWZCYTVKb24zOEQyTzlUU01Vc3J2b1dRUFpkeWNVR3dCOVo3Rnp0M1RVMQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1478" + - "2710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:00 GMT + - Wed, 18 Oct 2023 17:26:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,42 +566,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - faa307fe-b67a-452b-b379-9a5be2a3568e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"name":null,"description":null,"tags":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":null,"maintenance_window":null},"feature_gates":null,"admission_plugins":null,"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null},"apiserver_cert_sans":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 - method: PATCH - response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:00.210376582Z","upgrade_available":false,"version":"1.28.0"}' - headers: - Content-Length: - - "1476" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 01 Sep 2023 16:17:00 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 30e4bc1e-a15b-4501-803e-b17dda590067 + - 6821f652-f505-43a0-af35-6a01af9df94b status: 200 OK code: 200 duration: "" @@ -680,19 +577,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 - method: GET + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7?with_additional_resources=false + method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:00.210377Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:44.740738Z","created_at":"2023-10-18T17:26:44.740738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e8c177fa-ad15-4ba8-ab2a-f530ce4268e7","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:51.929631596Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1473" + - "1521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:00 GMT + - Wed, 18 Oct 2023 17:26:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +599,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f8bb049-db39-4a36-8f0c-3df24a289b65 + - 1fb60a26-d933-4275-bdb3-c3e9fab210d6 status: 200 OK code: 200 duration: "" @@ -713,19 +610,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:01.332089Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:44.740738Z","created_at":"2023-10-18T17:26:44.740738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.e8c177fa-ad15-4ba8-ab2a-f530ce4268e7.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"e8c177fa-ad15-4ba8-ab2a-f530ce4268e7","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:51.929632Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1478" + - "1518" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:05 GMT + - Wed, 18 Oct 2023 17:26:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +632,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5148bb1-67e6-45ec-bd5f-e87db5943a91 + - fc9cc3c3-2f46-48bc-bd7c-ddab81bf8508 status: 200 OK code: 200 duration: "" @@ -746,19 +643,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/e8c177fa-ad15-4ba8-ab2a-f530ce4268e7 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:01.332089Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"e8c177fa-ad15-4ba8-ab2a-f530ce4268e7","type":"not_found"}' headers: Content-Length: - - "1478" + - "128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:05 GMT + - Wed, 18 Oct 2023 17:26:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -768,63 +665,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a78e6b8-b56b-47dd-903e-250e2ee7eacb - status: 200 OK - code: 200 + - 5614c553-af2c-4484-9fc6-4fc2d78a418c + status: 404 Not Found + code: 404 duration: "" - request: - body: "" + body: '{"name":"other-private-network","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4/kubeconfig - method: GET - response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlpNVTFHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRmt4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVJoQ2tKRWRXVkxjbk5WY0ZwM0syMURjSE5VUm1SamQwaGFiR2xLZVhJdlMyNHlUWFYzYjNOdFEyb3paVTlTVEU5a01sVlhXQzlqVjNSMVVERjZiRGt5VlRjS1NrdFJVMnRDV2tSR1ozZHliSHBaTUZsaWFGSXdWMjU0VjBWUWNVRkVaa3hCUlZGTVMyZHdVRmxSTmpsT2RqRkdURkJvVkRab1VtTndSWGhsUXpoU2FRcDZkMmR0V0ZVcmRtTlBVVlpXWWtKcGEyb3ZaM0IzUnpWWllYUjVRMVo1Wkd4cFVsVXdSblY2U1VwS01WRmlObVl3YTJwRVRpOXBjSE5FZHk5b1NHVlNDa1ZWTW1SNU9GVTJhakEwU0VrdlkwaEpVRWR1VkdwT09WcFJSM0ZVU2tKS1lVRkxkaXQ2VXpKRFVVWmtjV0V5U1hWVFZuRXpWa3hHVkV4alUybFBlRVlLVkhwUGJtaEhMemwxWnpKSmMwY3lOMUZKV0RBM2FrNURjbE5ZZFdWUGVXcHNkRWRYUm1GV09GZDFRV3R2VUVsdmNtNTNlWEpRVFZSUVRETkJRWGM0WlFwVE4zaHRieXRpWld4M1VHWnJiV2wzVDFoTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1RWb3lhak5WTTJzMlNVRjNZVXRKV0ZCWVpXRklXbVp6V2l0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFdrVnBNM0UwVGtrMVdHMVhhMVZ4YXpKMmNtNVFlSE5ITHpOa09IUklNUzl6UlVkSU5HNTRXRlJKY1doMFdESTFRd3BNYkUxbVZHZFFNMVZvZERZMldXZExValY2TjFOWlVUUXlRVVpYU0RZMFdIbDBNRlIxWVcxcVoxSmFabVJSVnpSUGFXWlNRakFyZGtWS1NXNVdOR0ZWQ2tsU1pWTndObGxDTjJsWk5UbHVjMWhVWmxCeWVIcGhaVGhITW1SSEwybEVibVZ0VGpreEwydG1OaTg1ZFZreFowbG9NMDVzTkVjMmVreFlOWEZ1Y3pJS1prWlNWV2xUU1M5VE56aFFkM0ZPVjA1RWJVc3JNSEkxSzAxTVp6bG9SbFZwWWpCbFEycFRjR2RIY1dOUmNqbFdRMDlyYTA5WVZHNTNOVEl3VHpCTGRRcFhUR2xpU1V4c1MyVkthRmxTTldWcFRHbHROV1JVY1dOWmFuTnhjVlY2ZWtzeE5FOUhVWFJHTUN0MUwwWXhZblY0YlZkWGNGWXJSUzh6TW1sU1ZqaFFDbXh0TkVsS1ZtVk5jRlozZHpaTE4ybGFXWEZTYW10TmIxWnpjMVpxTUVwM2MycFlVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vM2I3ZDEyZGItY2NmNS00YWYxLWFjOTItYTUxYjk1ODZmMmM0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEaDk4a0JYME9yWjU0NUNVdjRTbXBVc040eVVXaFU5MkE0QmlHNkZlNUFPc0NEVVY1M0thQmRJaw==","content_type":"application/octet-stream","name":"kubeconfig"}' - headers: - Content-Length: - - "2708" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Fri, 01 Sep 2023 16:17:05 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f4a49b60-6d5a-4f7e-af28-68414d7285d6 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:01.332089Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T17:26:57.136489Z","dhcp_enabled":true,"id":"02f63466-90d0-48be-8b23-68f750589571","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:26:57.136489Z","id":"545a4856-8091-4572-a6cf-5c5576ac127e","subnet":"172.16.0.0/22","updated_at":"2023-10-18T17:26:57.136489Z"},{"created_at":"2023-10-18T17:26:57.136489Z","id":"fdaedd6c-a4d4-4b8d-b8fe-a4a11986e759","subnet":"fd63:256c:45f7:3fee::/64","updated_at":"2023-10-18T17:26:57.136489Z"}],"tags":[],"updated_at":"2023-10-18T17:26:57.136489Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1478" + - "721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:05 GMT + - Wed, 18 Oct 2023 17:26:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4e6cca4-31c6-49ae-8764-31f08536e702 + - ef0b5c5a-bc0f-42c1-bd4a-c2085314f76a status: 200 OK code: 200 duration: "" @@ -845,19 +711,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b1bba701-2e38-4fdd-8c0b-512111a1b36c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/02f63466-90d0-48be-8b23-68f750589571 method: GET response: - body: '{"created_at":"2023-09-01T16:16:47.525596Z","dhcp_enabled":true,"id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-09-01T16:16:47.525596Z","id":"78591cb1-e4df-4dca-aa24-a019bd646da5","subnet":"172.16.16.0/22","updated_at":"2023-09-01T16:16:47.525596Z"},{"created_at":"2023-09-01T16:16:47.525596Z","id":"75e77059-7a58-4855-84eb-cf56a4adc904","subnet":"fd63:256c:45f7:b6b2::/64","updated_at":"2023-09-01T16:16:47.525596Z"}],"tags":[],"updated_at":"2023-09-01T16:16:47.525596Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2023-10-18T17:26:57.136489Z","dhcp_enabled":true,"id":"02f63466-90d0-48be-8b23-68f750589571","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:26:57.136489Z","id":"545a4856-8091-4572-a6cf-5c5576ac127e","subnet":"172.16.0.0/22","updated_at":"2023-10-18T17:26:57.136489Z"},{"created_at":"2023-10-18T17:26:57.136489Z","id":"fdaedd6c-a4d4-4b8d-b8fe-a4a11986e759","subnet":"fd63:256c:45f7:3fee::/64","updated_at":"2023-10-18T17:26:57.136489Z"}],"tags":[],"updated_at":"2023-10-18T17:26:57.136489Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "703" + - "721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:05 GMT + - Wed, 18 Oct 2023 17:26:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,63 +733,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1b6f187-85cb-4711-b643-6f0e94ecf62f + - 4e005a02-6553-41bd-841a-ec046b20325b status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"k8s-private-network-cluster","description":"","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"version":"1.28.2","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"02f63466-90d0-48be-8b23-68f750589571"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 - method: GET - response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:01.332089Z","upgrade_available":false,"version":"1.28.0"}' - headers: - Content-Length: - - "1478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Fri, 01 Sep 2023 16:17:05 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7c4dadd9-17cb-4a26-94bc-c886f928d852 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b1bba701-2e38-4fdd-8c0b-512111a1b36c - method: GET + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST response: - body: '{"created_at":"2023-09-01T16:16:47.525596Z","dhcp_enabled":true,"id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-09-01T16:16:47.525596Z","id":"78591cb1-e4df-4dca-aa24-a019bd646da5","subnet":"172.16.16.0/22","updated_at":"2023-09-01T16:16:47.525596Z"},{"created_at":"2023-09-01T16:16:47.525596Z","id":"75e77059-7a58-4855-84eb-cf56a4adc904","subnet":"fd63:256c:45f7:b6b2::/64","updated_at":"2023-09-01T16:16:47.525596Z"}],"tags":[],"updated_at":"2023-09-01T16:16:47.525596Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d30bc90c-849c-441a-b765-324e245c9506.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:58.538708699Z","created_at":"2023-10-18T17:26:58.538708699Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d30bc90c-849c-441a-b765-324e245c9506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d30bc90c-849c-441a-b765-324e245c9506","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02f63466-90d0-48be-8b23-68f750589571","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:58.553738392Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "703" + - "1527" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:05 GMT + - Wed, 18 Oct 2023 17:26:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +768,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 175a2208-6859-4f3b-9d95-abd4857b5809 + - b29f881a-8f4a-4e62-9c48-36e5b885551e status: 200 OK code: 200 duration: "" @@ -944,19 +779,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:01.332089Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d30bc90c-849c-441a-b765-324e245c9506.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:58.538709Z","created_at":"2023-10-18T17:26:58.538709Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d30bc90c-849c-441a-b765-324e245c9506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d30bc90c-849c-441a-b765-324e245c9506","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02f63466-90d0-48be-8b23-68f750589571","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:26:58.553738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1478" + - "1518" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:05 GMT + - Wed, 18 Oct 2023 17:26:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2cb24f9-34bd-4d5b-b44f-b20d250bd381 + - e80a4493-855a-460e-9669-dded6092094e status: 200 OK code: 200 duration: "" @@ -977,19 +812,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlpNVTFHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRmt4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVJoQ2tKRWRXVkxjbk5WY0ZwM0syMURjSE5VUm1SamQwaGFiR2xLZVhJdlMyNHlUWFYzYjNOdFEyb3paVTlTVEU5a01sVlhXQzlqVjNSMVVERjZiRGt5VlRjS1NrdFJVMnRDV2tSR1ozZHliSHBaTUZsaWFGSXdWMjU0VjBWUWNVRkVaa3hCUlZGTVMyZHdVRmxSTmpsT2RqRkdURkJvVkRab1VtTndSWGhsUXpoU2FRcDZkMmR0V0ZVcmRtTlBVVlpXWWtKcGEyb3ZaM0IzUnpWWllYUjVRMVo1Wkd4cFVsVXdSblY2U1VwS01WRmlObVl3YTJwRVRpOXBjSE5FZHk5b1NHVlNDa1ZWTW1SNU9GVTJhakEwU0VrdlkwaEpVRWR1VkdwT09WcFJSM0ZVU2tKS1lVRkxkaXQ2VXpKRFVVWmtjV0V5U1hWVFZuRXpWa3hHVkV4alUybFBlRVlLVkhwUGJtaEhMemwxWnpKSmMwY3lOMUZKV0RBM2FrNURjbE5ZZFdWUGVXcHNkRWRYUm1GV09GZDFRV3R2VUVsdmNtNTNlWEpRVFZSUVRETkJRWGM0WlFwVE4zaHRieXRpWld4M1VHWnJiV2wzVDFoTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1RWb3lhak5WTTJzMlNVRjNZVXRKV0ZCWVpXRklXbVp6V2l0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFdrVnBNM0UwVGtrMVdHMVhhMVZ4YXpKMmNtNVFlSE5ITHpOa09IUklNUzl6UlVkSU5HNTRXRlJKY1doMFdESTFRd3BNYkUxbVZHZFFNMVZvZERZMldXZExValY2TjFOWlVUUXlRVVpYU0RZMFdIbDBNRlIxWVcxcVoxSmFabVJSVnpSUGFXWlNRakFyZGtWS1NXNVdOR0ZWQ2tsU1pWTndObGxDTjJsWk5UbHVjMWhVWmxCeWVIcGhaVGhITW1SSEwybEVibVZ0VGpreEwydG1OaTg1ZFZreFowbG9NMDVzTkVjMmVreFlOWEZ1Y3pJS1prWlNWV2xUU1M5VE56aFFkM0ZPVjA1RWJVc3JNSEkxSzAxTVp6bG9SbFZwWWpCbFEycFRjR2RIY1dOUmNqbFdRMDlyYTA5WVZHNTNOVEl3VHpCTGRRcFhUR2xpU1V4c1MyVkthRmxTTldWcFRHbHROV1JVY1dOWmFuTnhjVlY2ZWtzeE5FOUhVWFJHTUN0MUwwWXhZblY0YlZkWGNGWXJSUzh6TW1sU1ZqaFFDbXh0TkVsS1ZtVk5jRlozZHpaTE4ybGFXWEZTYW10TmIxWnpjMVpxTUVwM2MycFlVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vM2I3ZDEyZGItY2NmNS00YWYxLWFjOTItYTUxYjk1ODZmMmM0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEaDk4a0JYME9yWjU0NUNVdjRTbXBVc040eVVXaFU5MkE0QmlHNkZlNUFPc0NEVVY1M0thQmRJaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d30bc90c-849c-441a-b765-324e245c9506.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:58.538709Z","created_at":"2023-10-18T17:26:58.538709Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d30bc90c-849c-441a-b765-324e245c9506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d30bc90c-849c-441a-b765-324e245c9506","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02f63466-90d0-48be-8b23-68f750589571","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:27:00.077774Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2708" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:05 GMT + - Wed, 18 Oct 2023 17:27:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -999,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecc20079-8282-43fa-962e-93b1f2499d25 + - 1d1f02ae-0c3c-46a7-9f6a-4b4f3d653048 status: 200 OK code: 200 duration: "" @@ -1010,19 +845,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:01.332089Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d30bc90c-849c-441a-b765-324e245c9506.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:58.538709Z","created_at":"2023-10-18T17:26:58.538709Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d30bc90c-849c-441a-b765-324e245c9506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d30bc90c-849c-441a-b765-324e245c9506","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02f63466-90d0-48be-8b23-68f750589571","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:27:00.077774Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1478" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:06 GMT + - Wed, 18 Oct 2023 17:27:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +867,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c50023b6-399d-4899-8875-c4648ee08c83 + - 8722b51d-6b8e-444d-8ab4-316b0485e41a status: 200 OK code: 200 duration: "" @@ -1043,19 +878,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b1bba701-2e38-4fdd-8c0b-512111a1b36c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506/kubeconfig method: GET response: - body: '{"created_at":"2023-09-01T16:16:47.525596Z","dhcp_enabled":true,"id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-09-01T16:16:47.525596Z","id":"78591cb1-e4df-4dca-aa24-a019bd646da5","subnet":"172.16.16.0/22","updated_at":"2023-09-01T16:16:47.525596Z"},{"created_at":"2023-09-01T16:16:47.525596Z","id":"75e77059-7a58-4855-84eb-cf56a4adc904","subnet":"fd63:256c:45f7:b6b2::/64","updated_at":"2023-09-01T16:16:47.525596Z"}],"tags":[],"updated_at":"2023-09-01T16:16:47.525596Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVelRXcFpNVTlXYjFoRVZFMTZUVlJCZUU1NlJUTk5hbGt4VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJVRVFyQ2tzcmF5OURkVXRpWW1FeGJITjFkbHBQUW5aNVNYZFhhbWhGZVVoc1YzZFBjbkpLYWxKVVdrOUhWVmRZYjFNNVIyNVlUMk0yVkZac1RtVnRibUZ0VDJVS1RHSkZlazQwTVVwVFRUVktRbFJTWVZWd2RFbExXV3cyTkdWR2RXeDJSM0JxVTB0TFdTdFdVa3cxT0V4S1RrNU9hVEJyWWswMmFXWjVOMjVvTW00Mlp3bzJPVnA0UmpScGJsSXdSRTFwTkdzNGNXcEtMekpKZW14d2IzcFRiU3RIYVVSdFRuUnNkREJtT0hrMmNuWk1Xa0ZJT0ZaM1JFZHBUa2RrV0cwMVNtWTRDa1pHZUhock1XTkhVVTVZWlM5Q1pHaHVhRE5sVDNaV2RHSmhSRXRyWkVGNVVYTklWVWRNVW1GV1N6VXhOMmRTUzB0cWIzbEtZa2t6TlZSSlFXaFJXRzhLY0hKMlJtNW5jRkJhWVdGMFdrUkZjVUpxZGxvd1VEUTFkMVJDWWk5eFJuWndRalF6ZUdkclpYSXdOSEpwV0RkV1FXRkRablJhVEhSdlJFcG5lWFozTndwNFpXSkRTMjVQYTBacWVWVXZiVEJ5UjJJd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTE1FRXliWHBXYVhWQ1dEVTRTWGhNWlU1MVJXOTZWbGhsUlZOTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ09HdHFZV1I2YnpKS2NWaFRPSEpWVDNSTFVHOUpaMnRPVTJKS2VtbFVhRk01U1VKS1ZsTlZiVkpJVlhoUk1qbDNlQXBpT1RoeGRUbEhhekZYTTNOcWJHWlBiVTU0UkZGbVUzQm1PVlZZYTBFM1kzazFjM1Z4WkVkcFZIRTVZWE5VU0RNNWEzZEpSa05ZYURCck1FRTRUMjVzQ2xOUE5FVlNORFJaZFVaRllYVllja2huYTFKQ1V6ZGllaXMwUkhSeWJXbFZXV0prVkM5bE1TdGxjazlhUW5samVrOUpRVTF2UmxoRGNGUlhPRk01TVZrS0sybExjMDR6VFRsVk1VVm9MMVp6WTNoVlNIaFVhVWxOV1U1bk5FdGhSa0kwVVVWT1R5OUpiMFJQZGtZd01ucGxNR2hJT1VWVVIyY3pPWGxxVlc1NGRBcHdha0ptY1V4MVIyTjBOVmh2UVc5eFFsQjBZa0ZaZDJwSE5ESkdaRFprYm5SNE1sSlFZVWxLTldaaFEyVnVWM1Z4T1RrckswbDNObTVST0dOT01rVXpDbmw2UzBwRFZXRnRWbXR5U0dRelRHbzRVa2RTWVVoMVNrbEZNRzVITmtWRFdVa3pXUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDMwYmM5MGMtODQ5Yy00NDFhLWI3NjUtMzI0ZTI0NWM5NTA2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRakFDRTg4RTl5Y2JEa3Rmc3oxd2I2Z1hNdTBiejRzWHF1NHFvRWdreXI4UmprSHJ3OFIxajl5Rw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "703" + - "2710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:06 GMT + - Wed, 18 Oct 2023 17:27:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1065,7 +900,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb675f66-e71a-46f0-b1e6-b59a5d07eccc + - f7fb0618-9a29-4277-8106-727d30619a55 status: 200 OK code: 200 duration: "" @@ -1076,19 +911,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlpNVTFHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRmt4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVJoQ2tKRWRXVkxjbk5WY0ZwM0syMURjSE5VUm1SamQwaGFiR2xLZVhJdlMyNHlUWFYzYjNOdFEyb3paVTlTVEU5a01sVlhXQzlqVjNSMVVERjZiRGt5VlRjS1NrdFJVMnRDV2tSR1ozZHliSHBaTUZsaWFGSXdWMjU0VjBWUWNVRkVaa3hCUlZGTVMyZHdVRmxSTmpsT2RqRkdURkJvVkRab1VtTndSWGhsUXpoU2FRcDZkMmR0V0ZVcmRtTlBVVlpXWWtKcGEyb3ZaM0IzUnpWWllYUjVRMVo1Wkd4cFVsVXdSblY2U1VwS01WRmlObVl3YTJwRVRpOXBjSE5FZHk5b1NHVlNDa1ZWTW1SNU9GVTJhakEwU0VrdlkwaEpVRWR1VkdwT09WcFJSM0ZVU2tKS1lVRkxkaXQ2VXpKRFVVWmtjV0V5U1hWVFZuRXpWa3hHVkV4alUybFBlRVlLVkhwUGJtaEhMemwxWnpKSmMwY3lOMUZKV0RBM2FrNURjbE5ZZFdWUGVXcHNkRWRYUm1GV09GZDFRV3R2VUVsdmNtNTNlWEpRVFZSUVRETkJRWGM0WlFwVE4zaHRieXRpWld4M1VHWnJiV2wzVDFoTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1RWb3lhak5WTTJzMlNVRjNZVXRKV0ZCWVpXRklXbVp6V2l0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFdrVnBNM0UwVGtrMVdHMVhhMVZ4YXpKMmNtNVFlSE5ITHpOa09IUklNUzl6UlVkSU5HNTRXRlJKY1doMFdESTFRd3BNYkUxbVZHZFFNMVZvZERZMldXZExValY2TjFOWlVUUXlRVVpYU0RZMFdIbDBNRlIxWVcxcVoxSmFabVJSVnpSUGFXWlNRakFyZGtWS1NXNVdOR0ZWQ2tsU1pWTndObGxDTjJsWk5UbHVjMWhVWmxCeWVIcGhaVGhITW1SSEwybEVibVZ0VGpreEwydG1OaTg1ZFZreFowbG9NMDVzTkVjMmVreFlOWEZ1Y3pJS1prWlNWV2xUU1M5VE56aFFkM0ZPVjA1RWJVc3JNSEkxSzAxTVp6bG9SbFZwWWpCbFEycFRjR2RIY1dOUmNqbFdRMDlyYTA5WVZHNTNOVEl3VHpCTGRRcFhUR2xpU1V4c1MyVkthRmxTTldWcFRHbHROV1JVY1dOWmFuTnhjVlY2ZWtzeE5FOUhVWFJHTUN0MUwwWXhZblY0YlZkWGNGWXJSUzh6TW1sU1ZqaFFDbXh0TkVsS1ZtVk5jRlozZHpaTE4ybGFXWEZTYW10TmIxWnpjMVpxTUVwM2MycFlVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vM2I3ZDEyZGItY2NmNS00YWYxLWFjOTItYTUxYjk1ODZmMmM0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEaDk4a0JYME9yWjU0NUNVdjRTbXBVc040eVVXaFU5MkE0QmlHNkZlNUFPc0NEVVY1M0thQmRJaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d30bc90c-849c-441a-b765-324e245c9506.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:58.538709Z","created_at":"2023-10-18T17:26:58.538709Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d30bc90c-849c-441a-b765-324e245c9506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d30bc90c-849c-441a-b765-324e245c9506","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02f63466-90d0-48be-8b23-68f750589571","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:27:00.077774Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2708" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:06 GMT + - Wed, 18 Oct 2023 17:27:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1098,7 +933,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95c6e162-6602-46b6-98ec-a513e77c04f6 + - 5652ffe3-face-4bc5-ac83-ac4a4f946a76 status: 200 OK code: 200 duration: "" @@ -1109,19 +944,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6a3be534-eff7-48ad-bc55-d55fc9d0d221 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:01.332089Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T17:26:43.392150Z","dhcp_enabled":true,"id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:26:43.392150Z","id":"d500e056-6397-47eb-9654-4402c581487b","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:26:43.392150Z"},{"created_at":"2023-10-18T17:26:43.392150Z","id":"b26df8da-60fc-4ed0-a991-3086679d352c","subnet":"fd63:256c:45f7:8c5c::/64","updated_at":"2023-10-18T17:26:43.392150Z"}],"tags":[],"updated_at":"2023-10-18T17:26:43.392150Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1478" + - "720" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:06 GMT + - Wed, 18 Oct 2023 17:27:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1131,7 +966,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8eb3cb7e-3647-4818-a77e-872e65b12cae + - 1de01863-b61d-4d70-bab6-7cf46b6a78ad status: 200 OK code: 200 duration: "" @@ -1142,19 +977,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b1bba701-2e38-4fdd-8c0b-512111a1b36c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/02f63466-90d0-48be-8b23-68f750589571 method: GET response: - body: '{"created_at":"2023-09-01T16:16:47.525596Z","dhcp_enabled":true,"id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-09-01T16:16:47.525596Z","id":"78591cb1-e4df-4dca-aa24-a019bd646da5","subnet":"172.16.16.0/22","updated_at":"2023-09-01T16:16:47.525596Z"},{"created_at":"2023-09-01T16:16:47.525596Z","id":"75e77059-7a58-4855-84eb-cf56a4adc904","subnet":"fd63:256c:45f7:b6b2::/64","updated_at":"2023-09-01T16:16:47.525596Z"}],"tags":[],"updated_at":"2023-09-01T16:16:47.525596Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2023-10-18T17:26:57.136489Z","dhcp_enabled":true,"id":"02f63466-90d0-48be-8b23-68f750589571","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:26:57.136489Z","id":"545a4856-8091-4572-a6cf-5c5576ac127e","subnet":"172.16.0.0/22","updated_at":"2023-10-18T17:26:57.136489Z"},{"created_at":"2023-10-18T17:26:57.136489Z","id":"fdaedd6c-a4d4-4b8d-b8fe-a4a11986e759","subnet":"fd63:256c:45f7:3fee::/64","updated_at":"2023-10-18T17:26:57.136489Z"}],"tags":[],"updated_at":"2023-10-18T17:26:57.136489Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "703" + - "721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:06 GMT + - Wed, 18 Oct 2023 17:27:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1164,7 +999,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4b6908c-d662-4160-a788-e1fb73e8fd21 + - 9556751c-e3af-40d9-b603-85fe755d9e86 status: 200 OK code: 200 duration: "" @@ -1175,19 +1010,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlpNVTFHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRmt4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVJoQ2tKRWRXVkxjbk5WY0ZwM0syMURjSE5VUm1SamQwaGFiR2xLZVhJdlMyNHlUWFYzYjNOdFEyb3paVTlTVEU5a01sVlhXQzlqVjNSMVVERjZiRGt5VlRjS1NrdFJVMnRDV2tSR1ozZHliSHBaTUZsaWFGSXdWMjU0VjBWUWNVRkVaa3hCUlZGTVMyZHdVRmxSTmpsT2RqRkdURkJvVkRab1VtTndSWGhsUXpoU2FRcDZkMmR0V0ZVcmRtTlBVVlpXWWtKcGEyb3ZaM0IzUnpWWllYUjVRMVo1Wkd4cFVsVXdSblY2U1VwS01WRmlObVl3YTJwRVRpOXBjSE5FZHk5b1NHVlNDa1ZWTW1SNU9GVTJhakEwU0VrdlkwaEpVRWR1VkdwT09WcFJSM0ZVU2tKS1lVRkxkaXQ2VXpKRFVVWmtjV0V5U1hWVFZuRXpWa3hHVkV4alUybFBlRVlLVkhwUGJtaEhMemwxWnpKSmMwY3lOMUZKV0RBM2FrNURjbE5ZZFdWUGVXcHNkRWRYUm1GV09GZDFRV3R2VUVsdmNtNTNlWEpRVFZSUVRETkJRWGM0WlFwVE4zaHRieXRpWld4M1VHWnJiV2wzVDFoTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1RWb3lhak5WTTJzMlNVRjNZVXRKV0ZCWVpXRklXbVp6V2l0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFdrVnBNM0UwVGtrMVdHMVhhMVZ4YXpKMmNtNVFlSE5ITHpOa09IUklNUzl6UlVkSU5HNTRXRlJKY1doMFdESTFRd3BNYkUxbVZHZFFNMVZvZERZMldXZExValY2TjFOWlVUUXlRVVpYU0RZMFdIbDBNRlIxWVcxcVoxSmFabVJSVnpSUGFXWlNRakFyZGtWS1NXNVdOR0ZWQ2tsU1pWTndObGxDTjJsWk5UbHVjMWhVWmxCeWVIcGhaVGhITW1SSEwybEVibVZ0VGpreEwydG1OaTg1ZFZreFowbG9NMDVzTkVjMmVreFlOWEZ1Y3pJS1prWlNWV2xUU1M5VE56aFFkM0ZPVjA1RWJVc3JNSEkxSzAxTVp6bG9SbFZwWWpCbFEycFRjR2RIY1dOUmNqbFdRMDlyYTA5WVZHNTNOVEl3VHpCTGRRcFhUR2xpU1V4c1MyVkthRmxTTldWcFRHbHROV1JVY1dOWmFuTnhjVlY2ZWtzeE5FOUhVWFJHTUN0MUwwWXhZblY0YlZkWGNGWXJSUzh6TW1sU1ZqaFFDbXh0TkVsS1ZtVk5jRlozZHpaTE4ybGFXWEZTYW10TmIxWnpjMVpxTUVwM2MycFlVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vM2I3ZDEyZGItY2NmNS00YWYxLWFjOTItYTUxYjk1ODZmMmM0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEaDk4a0JYME9yWjU0NUNVdjRTbXBVc040eVVXaFU5MkE0QmlHNkZlNUFPc0NEVVY1M0thQmRJaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d30bc90c-849c-441a-b765-324e245c9506.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:58.538709Z","created_at":"2023-10-18T17:26:58.538709Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d30bc90c-849c-441a-b765-324e245c9506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d30bc90c-849c-441a-b765-324e245c9506","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02f63466-90d0-48be-8b23-68f750589571","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:27:00.077774Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2708" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:06 GMT + - Wed, 18 Oct 2023 17:27:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1197,7 +1032,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4fbffaf-1a72-4302-a8bf-c338aa1ca296 + - 1618276f-d512-40bf-a9a6-b1289bdad0c8 status: 200 OK code: 200 duration: "" @@ -1208,19 +1043,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b1bba701-2e38-4fdd-8c0b-512111a1b36c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6a3be534-eff7-48ad-bc55-d55fc9d0d221 method: GET response: - body: '{"created_at":"2023-09-01T16:16:47.525596Z","dhcp_enabled":true,"id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-09-01T16:16:47.525596Z","id":"78591cb1-e4df-4dca-aa24-a019bd646da5","subnet":"172.16.16.0/22","updated_at":"2023-09-01T16:16:47.525596Z"},{"created_at":"2023-09-01T16:16:47.525596Z","id":"75e77059-7a58-4855-84eb-cf56a4adc904","subnet":"fd63:256c:45f7:b6b2::/64","updated_at":"2023-09-01T16:16:47.525596Z"}],"tags":[],"updated_at":"2023-09-01T16:16:47.525596Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2023-10-18T17:26:43.392150Z","dhcp_enabled":true,"id":"6a3be534-eff7-48ad-bc55-d55fc9d0d221","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:26:43.392150Z","id":"d500e056-6397-47eb-9654-4402c581487b","subnet":"172.16.16.0/22","updated_at":"2023-10-18T17:26:43.392150Z"},{"created_at":"2023-10-18T17:26:43.392150Z","id":"b26df8da-60fc-4ed0-a991-3086679d352c","subnet":"fd63:256c:45f7:8c5c::/64","updated_at":"2023-10-18T17:26:43.392150Z"}],"tags":[],"updated_at":"2023-10-18T17:26:43.392150Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "703" + - "720" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:06 GMT + - Wed, 18 Oct 2023 17:27:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1230,7 +1065,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5e6a166-2c4c-4f3f-bce0-db2d64348262 + - 2edbf4b8-eecb-4433-b162-f2480d17201c status: 200 OK code: 200 duration: "" @@ -1241,19 +1076,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/02f63466-90d0-48be-8b23-68f750589571 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:01.332089Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T17:26:57.136489Z","dhcp_enabled":true,"id":"02f63466-90d0-48be-8b23-68f750589571","name":"other-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T17:26:57.136489Z","id":"545a4856-8091-4572-a6cf-5c5576ac127e","subnet":"172.16.0.0/22","updated_at":"2023-10-18T17:26:57.136489Z"},{"created_at":"2023-10-18T17:26:57.136489Z","id":"fdaedd6c-a4d4-4b8d-b8fe-a4a11986e759","subnet":"fd63:256c:45f7:3fee::/64","updated_at":"2023-10-18T17:26:57.136489Z"}],"tags":[],"updated_at":"2023-10-18T17:26:57.136489Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1478" + - "721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:06 GMT + - Wed, 18 Oct 2023 17:27:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1263,7 +1098,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0212ccaf-a45b-4b81-bfab-6476f0c11d2e + - 94169a1f-4819-466f-bdf2-b039b3a37c42 status: 200 OK code: 200 duration: "" @@ -1274,19 +1109,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlpNVTFHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRmt4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVJoQ2tKRWRXVkxjbk5WY0ZwM0syMURjSE5VUm1SamQwaGFiR2xLZVhJdlMyNHlUWFYzYjNOdFEyb3paVTlTVEU5a01sVlhXQzlqVjNSMVVERjZiRGt5VlRjS1NrdFJVMnRDV2tSR1ozZHliSHBaTUZsaWFGSXdWMjU0VjBWUWNVRkVaa3hCUlZGTVMyZHdVRmxSTmpsT2RqRkdURkJvVkRab1VtTndSWGhsUXpoU2FRcDZkMmR0V0ZVcmRtTlBVVlpXWWtKcGEyb3ZaM0IzUnpWWllYUjVRMVo1Wkd4cFVsVXdSblY2U1VwS01WRmlObVl3YTJwRVRpOXBjSE5FZHk5b1NHVlNDa1ZWTW1SNU9GVTJhakEwU0VrdlkwaEpVRWR1VkdwT09WcFJSM0ZVU2tKS1lVRkxkaXQ2VXpKRFVVWmtjV0V5U1hWVFZuRXpWa3hHVkV4alUybFBlRVlLVkhwUGJtaEhMemwxWnpKSmMwY3lOMUZKV0RBM2FrNURjbE5ZZFdWUGVXcHNkRWRYUm1GV09GZDFRV3R2VUVsdmNtNTNlWEpRVFZSUVRETkJRWGM0WlFwVE4zaHRieXRpWld4M1VHWnJiV2wzVDFoTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1RWb3lhak5WTTJzMlNVRjNZVXRKV0ZCWVpXRklXbVp6V2l0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFdrVnBNM0UwVGtrMVdHMVhhMVZ4YXpKMmNtNVFlSE5ITHpOa09IUklNUzl6UlVkSU5HNTRXRlJKY1doMFdESTFRd3BNYkUxbVZHZFFNMVZvZERZMldXZExValY2TjFOWlVUUXlRVVpYU0RZMFdIbDBNRlIxWVcxcVoxSmFabVJSVnpSUGFXWlNRakFyZGtWS1NXNVdOR0ZWQ2tsU1pWTndObGxDTjJsWk5UbHVjMWhVWmxCeWVIcGhaVGhITW1SSEwybEVibVZ0VGpreEwydG1OaTg1ZFZreFowbG9NMDVzTkVjMmVreFlOWEZ1Y3pJS1prWlNWV2xUU1M5VE56aFFkM0ZPVjA1RWJVc3JNSEkxSzAxTVp6bG9SbFZwWWpCbFEycFRjR2RIY1dOUmNqbFdRMDlyYTA5WVZHNTNOVEl3VHpCTGRRcFhUR2xpU1V4c1MyVkthRmxTTldWcFRHbHROV1JVY1dOWmFuTnhjVlY2ZWtzeE5FOUhVWFJHTUN0MUwwWXhZblY0YlZkWGNGWXJSUzh6TW1sU1ZqaFFDbXh0TkVsS1ZtVk5jRlozZHpaTE4ybGFXWEZTYW10TmIxWnpjMVpxTUVwM2MycFlVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vM2I3ZDEyZGItY2NmNS00YWYxLWFjOTItYTUxYjk1ODZmMmM0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEaDk4a0JYME9yWjU0NUNVdjRTbXBVc040eVVXaFU5MkE0QmlHNkZlNUFPc0NEVVY1M0thQmRJaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d30bc90c-849c-441a-b765-324e245c9506.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:58.538709Z","created_at":"2023-10-18T17:26:58.538709Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d30bc90c-849c-441a-b765-324e245c9506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d30bc90c-849c-441a-b765-324e245c9506","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02f63466-90d0-48be-8b23-68f750589571","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:27:00.077774Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2708" + - "1523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:06 GMT + - Wed, 18 Oct 2023 17:27:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1296,7 +1131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eff88a72-8f16-4a74-b265-327ee40541f0 + - e393aafd-8154-4120-b779-6c6a4d345803 status: 200 OK code: 200 duration: "" @@ -1307,19 +1142,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b1bba701-2e38-4fdd-8c0b-512111a1b36c + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506/kubeconfig method: GET response: - body: '{"created_at":"2023-09-01T16:16:47.525596Z","dhcp_enabled":true,"id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","name":"k8s-private-network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-09-01T16:16:47.525596Z","id":"78591cb1-e4df-4dca-aa24-a019bd646da5","subnet":"172.16.16.0/22","updated_at":"2023-09-01T16:16:47.525596Z"},{"created_at":"2023-09-01T16:16:47.525596Z","id":"75e77059-7a58-4855-84eb-cf56a4adc904","subnet":"fd63:256c:45f7:b6b2::/64","updated_at":"2023-09-01T16:16:47.525596Z"}],"tags":[],"updated_at":"2023-09-01T16:16:47.525596Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMVVRWGhPZWtVelRXcFpNVTlXYjFoRVZFMTZUVlJCZUU1NlJUTk5hbGt4VDFadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJVRVFyQ2tzcmF5OURkVXRpWW1FeGJITjFkbHBQUW5aNVNYZFhhbWhGZVVoc1YzZFBjbkpLYWxKVVdrOUhWVmRZYjFNNVIyNVlUMk0yVkZac1RtVnRibUZ0VDJVS1RHSkZlazQwTVVwVFRUVktRbFJTWVZWd2RFbExXV3cyTkdWR2RXeDJSM0JxVTB0TFdTdFdVa3cxT0V4S1RrNU9hVEJyWWswMmFXWjVOMjVvTW00Mlp3bzJPVnA0UmpScGJsSXdSRTFwTkdzNGNXcEtMekpKZW14d2IzcFRiU3RIYVVSdFRuUnNkREJtT0hrMmNuWk1Xa0ZJT0ZaM1JFZHBUa2RrV0cwMVNtWTRDa1pHZUhock1XTkhVVTVZWlM5Q1pHaHVhRE5sVDNaV2RHSmhSRXRyWkVGNVVYTklWVWRNVW1GV1N6VXhOMmRTUzB0cWIzbEtZa2t6TlZSSlFXaFJXRzhLY0hKMlJtNW5jRkJhWVdGMFdrUkZjVUpxZGxvd1VEUTFkMVJDWWk5eFJuWndRalF6ZUdkclpYSXdOSEpwV0RkV1FXRkRablJhVEhSdlJFcG5lWFozTndwNFpXSkRTMjVQYTBacWVWVXZiVEJ5UjJJd1EwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaTE1FRXliWHBXYVhWQ1dEVTRTWGhNWlU1MVJXOTZWbGhsUlZOTlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGQ09HdHFZV1I2YnpKS2NWaFRPSEpWVDNSTFVHOUpaMnRPVTJKS2VtbFVhRk01U1VKS1ZsTlZiVkpJVlhoUk1qbDNlQXBpT1RoeGRUbEhhekZYTTNOcWJHWlBiVTU0UkZGbVUzQm1PVlZZYTBFM1kzazFjM1Z4WkVkcFZIRTVZWE5VU0RNNWEzZEpSa05ZYURCck1FRTRUMjVzQ2xOUE5FVlNORFJaZFVaRllYVllja2huYTFKQ1V6ZGllaXMwUkhSeWJXbFZXV0prVkM5bE1TdGxjazlhUW5samVrOUpRVTF2UmxoRGNGUlhPRk01TVZrS0sybExjMDR6VFRsVk1VVm9MMVp6WTNoVlNIaFVhVWxOV1U1bk5FdGhSa0kwVVVWT1R5OUpiMFJQZGtZd01ucGxNR2hJT1VWVVIyY3pPWGxxVlc1NGRBcHdha0ptY1V4MVIyTjBOVmh2UVc5eFFsQjBZa0ZaZDJwSE5ESkdaRFprYm5SNE1sSlFZVWxLTldaaFEyVnVWM1Z4T1RrckswbDNObTVST0dOT01rVXpDbmw2UzBwRFZXRnRWbXR5U0dRelRHbzRVa2RTWVVoMVNrbEZNRzVITmtWRFdVa3pXUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDMwYmM5MGMtODQ5Yy00NDFhLWI3NjUtMzI0ZTI0NWM5NTA2LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBRakFDRTg4RTl5Y2JEa3Rmc3oxd2I2Z1hNdTBiejRzWHF1NHFvRWdreXI4UmprSHJ3OFIxajl5Rw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "703" + - "2710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:07 GMT + - Wed, 18 Oct 2023 17:27:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1329,7 +1164,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 815b1005-3600-4f1d-9aa7-7aa4364da076 + - ffc5b31d-528c-44cb-a9e0-1fff3433391a status: 200 OK code: 200 duration: "" @@ -1340,19 +1175,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 - method: GET + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506?with_additional_resources=false + method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:01.332089Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d30bc90c-849c-441a-b765-324e245c9506.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:58.538709Z","created_at":"2023-10-18T17:26:58.538709Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d30bc90c-849c-441a-b765-324e245c9506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d30bc90c-849c-441a-b765-324e245c9506","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02f63466-90d0-48be-8b23-68f750589571","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:27:05.384695643Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1478" + - "1521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:07 GMT + - Wed, 18 Oct 2023 17:27:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1362,7 +1197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9111ffad-daee-46d0-9e6b-7e4b1033954c + - 66d24114-81c6-4114-82c8-33fe3cf53f66 status: 200 OK code: 200 duration: "" @@ -1373,19 +1208,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVU0xZWtORFFXTXJaMEYzU1VKQlowbENRVVJCVGtKbmEzRm9hMmxIT1hjd1FrRlJjMFpCUkVGV1RWSk5kMFZSV1VSV1VWRkVSWGR3Y21SWFNtd0tZMjAxYkdSSFZucE5RalJZUkZSSmVrMUVaM3BOVkVVeVRWUlpNVTFHYjFoRVZFMTZUVVJuZWsxVVJUSk5WRmt4VFVadmQwWlVSVlJOUWtWSFFURlZSUXBCZUUxTFlUTldhVnBZU25WYVdGSnNZM3BEUTBGVFNYZEVVVmxLUzI5YVNXaDJZMDVCVVVWQ1FsRkJSR2RuUlZCQlJFTkRRVkZ2UTJkblJVSkJUVVJoQ2tKRWRXVkxjbk5WY0ZwM0syMURjSE5VUm1SamQwaGFiR2xLZVhJdlMyNHlUWFYzYjNOdFEyb3paVTlTVEU5a01sVlhXQzlqVjNSMVVERjZiRGt5VlRjS1NrdFJVMnRDV2tSR1ozZHliSHBaTUZsaWFGSXdWMjU0VjBWUWNVRkVaa3hCUlZGTVMyZHdVRmxSTmpsT2RqRkdURkJvVkRab1VtTndSWGhsUXpoU2FRcDZkMmR0V0ZVcmRtTlBVVlpXWWtKcGEyb3ZaM0IzUnpWWllYUjVRMVo1Wkd4cFVsVXdSblY2U1VwS01WRmlObVl3YTJwRVRpOXBjSE5FZHk5b1NHVlNDa1ZWTW1SNU9GVTJhakEwU0VrdlkwaEpVRWR1VkdwT09WcFJSM0ZVU2tKS1lVRkxkaXQ2VXpKRFVVWmtjV0V5U1hWVFZuRXpWa3hHVkV4alUybFBlRVlLVkhwUGJtaEhMemwxWnpKSmMwY3lOMUZKV0RBM2FrNURjbE5ZZFdWUGVXcHNkRWRYUm1GV09GZDFRV3R2VUVsdmNtNTNlWEpRVFZSUVRETkJRWGM0WlFwVE4zaHRieXRpWld4M1VHWnJiV2wzVDFoTlEwRjNSVUZCWVU1RFRVVkJkMFJuV1VSV1VqQlFRVkZJTDBKQlVVUkJaMHRyVFVFNFIwRXhWV1JGZDBWQ0NpOTNVVVpOUVUxQ1FXWTRkMGhSV1VSV1VqQlBRa0paUlVaT1RWb3lhak5WTTJzMlNVRjNZVXRKV0ZCWVpXRklXbVp6V2l0TlFUQkhRMU54UjFOSllqTUtSRkZGUWtOM1ZVRkJORWxDUVZGRFdrVnBNM0UwVGtrMVdHMVhhMVZ4YXpKMmNtNVFlSE5ITHpOa09IUklNUzl6UlVkSU5HNTRXRlJKY1doMFdESTFRd3BNYkUxbVZHZFFNMVZvZERZMldXZExValY2TjFOWlVUUXlRVVpYU0RZMFdIbDBNRlIxWVcxcVoxSmFabVJSVnpSUGFXWlNRakFyZGtWS1NXNVdOR0ZWQ2tsU1pWTndObGxDTjJsWk5UbHVjMWhVWmxCeWVIcGhaVGhITW1SSEwybEVibVZ0VGpreEwydG1OaTg1ZFZreFowbG9NMDVzTkVjMmVreFlOWEZ1Y3pJS1prWlNWV2xUU1M5VE56aFFkM0ZPVjA1RWJVc3JNSEkxSzAxTVp6bG9SbFZwWWpCbFEycFRjR2RIY1dOUmNqbFdRMDlyYTA5WVZHNTNOVEl3VHpCTGRRcFhUR2xpU1V4c1MyVkthRmxTTldWcFRHbHROV1JVY1dOWmFuTnhjVlY2ZWtzeE5FOUhVWFJHTUN0MUwwWXhZblY0YlZkWGNGWXJSUzh6TW1sU1ZqaFFDbXh0TkVsS1ZtVk5jRlozZHpaTE4ybGFXWEZTYW10TmIxWnpjMVpxTUVwM2MycFlVQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vM2I3ZDEyZGItY2NmNS00YWYxLWFjOTItYTUxYjk1ODZmMmM0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAiazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyIgogICAgdXNlcjogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogazhzLXByaXZhdGUtbmV0d29yay1jbHVzdGVyLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBEaDk4a0JYME9yWjU0NUNVdjRTbXBVc040eVVXaFU5MkE0QmlHNkZlNUFPc0NEVVY1M0thQmRJaw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://d30bc90c-849c-441a-b765-324e245c9506.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-10-18T17:26:58.538709Z","created_at":"2023-10-18T17:26:58.538709Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.d30bc90c-849c-441a-b765-324e245c9506.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"d30bc90c-849c-441a-b765-324e245c9506","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"02f63466-90d0-48be-8b23-68f750589571","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-10-18T17:27:05.384696Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2708" + - "1518" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:07 GMT + - Wed, 18 Oct 2023 17:27:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1395,7 +1230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a738a08-5007-4357-8641-9d6cc1e7cad3 + - b5796937-f1b6-42aa-be15-4d00e814dc2e status: 200 OK code: 200 duration: "" @@ -1406,52 +1241,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4?with_additional_resources=true + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6a3be534-eff7-48ad-bc55-d55fc9d0d221 method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:07.485754190Z","upgrade_available":false,"version":"1.28.0"}' - headers: - Content-Length: - - "1476" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 01 Sep 2023 16:17:07 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1dcf516f-29b1-4616-b8ed-ed440fee76a7 - status: 200 OK - code: 200 - duration: "" -- request: body: "" - form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 - method: GET - response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.api.k8s.fr-par.scw.cloud:6443","cni":"calico","commitment_ends_at":"2023-09-01T16:16:48.621725Z","created_at":"2023-09-01T16:16:48.621725Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.3b7d12db-ccf5-4af1-ac92-a51b9586f2c4.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","ingress":"none","name":"k8s-private-network-cluster","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"type":"kapsule","updated_at":"2023-09-01T16:17:07.485754Z","upgrade_available":false,"version":"1.28.0"}' - headers: - Content-Length: - - "1473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:07 GMT + - Wed, 18 Oct 2023 17:27:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1461,9 +1261,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6483743d-5f9e-4fb8-ba57-ffe7374ef21c - status: 200 OK - code: 200 + - 975516c3-01b4-44e4-935b-0462bed1694a + status: 204 No Content + code: 204 duration: "" - request: body: "" @@ -1472,10 +1272,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"d30bc90c-849c-441a-b765-324e245c9506","type":"not_found"}' headers: Content-Length: - "128" @@ -1484,7 +1284,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:12 GMT + - Wed, 18 Oct 2023 17:27:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1494,7 +1294,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf10607f-6172-4d7a-bafc-b643aa650c7a + - e112b4eb-50e9-4557-911c-c05d38321f55 status: 404 Not Found code: 404 duration: "" @@ -1505,19 +1305,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b1bba701-2e38-4fdd-8c0b-512111a1b36c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/02f63466-90d0-48be-8b23-68f750589571 method: DELETE response: - body: '{"message":"resource is not found","resource":"private_network","resource_id":"b1bba701-2e38-4fdd-8c0b-512111a1b36c","type":"not_found"}' + body: "" headers: - Content-Length: - - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:12 GMT + - Wed, 18 Oct 2023 17:27:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1527,9 +1325,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94a18370-41eb-4a71-930e-2c2bc3dc2c20 - status: 404 Not Found - code: 404 + - 1dde3047-a8b4-4986-98d8-b23228dd4914 + status: 204 No Content + code: 204 duration: "" - request: body: "" @@ -1538,10 +1336,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3b7d12db-ccf5-4af1-ac92-a51b9586f2c4 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d30bc90c-849c-441a-b765-324e245c9506 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"3b7d12db-ccf5-4af1-ac92-a51b9586f2c4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"d30bc90c-849c-441a-b765-324e245c9506","type":"not_found"}' headers: Content-Length: - "128" @@ -1550,7 +1348,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:12 GMT + - Wed, 18 Oct 2023 17:27:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1560,7 +1358,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a8b5837-8e7b-4725-86b0-892dec26b3cd + - cbbee0d3-d039-4bfb-85fe-a6ccb995654f status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/k8s-cluster-type-change.cassette.yaml b/scaleway/testdata/k8s-cluster-type-change.cassette.yaml index 0c4aef0245..441a7574d6 100644 --- a/scaleway/testdata/k8s-cluster-type-change.cassette.yaml +++ b/scaleway/testdata/k8s-cluster-type-change.cassette.yaml @@ -12,11 +12,11 @@ interactions: method: GET response: body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.28.0","name":"1.28.0","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.27.4","name":"1.27.4","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.26.7","name":"1.26.7","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.25.12","name":"1.25.12","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes - 1.24.16","name":"1.24.16","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd","docker"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.28.2","name":"1.28.2","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.27.6","name":"1.27.6","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","GRPCContainerProbe","ReadWriteOncePod","ValidatingAdmissionPolicy","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.26.9","name":"1.26.9","region":"fr-par"},{"available_admission_plugins":["PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod","CSINodeExpandSecret"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.25.14","name":"1.25.14","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe","ReadWriteOncePod"],"available_ingresses":["none"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes + 1.24.17","name":"1.24.17","region":"fr-par"},{"available_admission_plugins":["PodSecurityPolicy","PodNodeSelector","AlwaysPullImages","PodTolerationRestriction"],"available_cnis":["cilium","calico","weave","flannel","kilo"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","EphemeralContainers","KubeletCredentialProviders","GRPCContainerProbe"],"available_ingresses":["none","nginx","traefik2"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxPods":"uint16"},"label":"Kubernetes 1.23.17","name":"1.23.17","region":"fr-par"}]}' headers: Content-Security-Policy: @@ -24,7 +24,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:55 GMT + - Wed, 18 Oct 2023 16:35:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,12 +34,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58f28ac0-789c-4181-86a5-2fa3c7728a46 + - 19fe143d-70ba-4d67-a57c-a96bb5855105 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"kapsule","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.0","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"name":"test-type-change","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null,"subnets":null,"vpc_id":null}' form: {} headers: Content-Type: @@ -47,19 +47,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.808456161Z","created_at":"2023-09-01T16:15:56.808456161Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-09-01T16:15:56.816357735Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:43:35.686906Z","dhcp_enabled":true,"id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:35.686906Z","id":"6e957e34-653e-4fed-ad63-38ba4eb78285","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:43:35.686906Z"},{"created_at":"2023-10-18T16:43:35.686906Z","id":"975a8ca4-bf73-442f-8fed-25cd29f6029e","subnet":"fd63:256c:45f7:91b4::/64","updated_at":"2023-10-18T16:43:35.686906Z"}],"tags":[],"updated_at":"2023-10-18T16:43:35.686906Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1433" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:56 GMT + - Wed, 18 Oct 2023 16:43:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -69,7 +69,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96cbb415-e812-4d93-8fce-00eaf19f65b0 + - 8bb1dc70-1dbc-4e8e-89c9-e6205c59a349 status: 200 OK code: 200 duration: "" @@ -80,19 +80,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e119ab2a-cb88-4b75-b93d-94e1eabcf342 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.808456Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-09-01T16:15:56.816358Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:43:35.686906Z","dhcp_enabled":true,"id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:35.686906Z","id":"6e957e34-653e-4fed-ad63-38ba4eb78285","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:43:35.686906Z"},{"created_at":"2023-10-18T16:43:35.686906Z","id":"975a8ca4-bf73-442f-8fed-25cd29f6029e","subnet":"fd63:256c:45f7:91b4::/64","updated_at":"2023-10-18T16:43:35.686906Z"}],"tags":[],"updated_at":"2023-10-18T16:43:35.686906Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1424" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:15:56 GMT + - Wed, 18 Oct 2023 16:43:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,30 +102,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67c1047c-c960-49c2-8641-dbf200209f22 + - d0d997d2-92e4-4bb0-b2ec-2da84d14894a status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"kapsule","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 - method: GET + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.808456Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-09-01T16:16:00.305783Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:36.596072727Z","created_at":"2023-10-18T16:43:36.596072727Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-10-18T16:43:36.605301121Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1429" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:01 GMT + - Wed, 18 Oct 2023 16:43:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -135,7 +137,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3523e54b-0658-49da-b485-40a198424493 + - 238dc787-d171-41bf-8911-d335fe2f9841 status: 200 OK code: 200 duration: "" @@ -146,19 +148,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.808456Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-09-01T16:16:00.305783Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:36.596073Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-10-18T16:43:36.605301Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1429" + - "1503" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:01 GMT + - Wed, 18 Oct 2023 16:43:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +170,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83f3e150-84b3-4621-b043-23756473e1fe + - d5b3007d-7f64-428c-9661-1e9fe0199b1c status: 200 OK code: 200 duration: "" @@ -179,19 +181,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzBrMkNrWmhRME12TmtVeGNYQm9aVlZWWW5kSFRqaEVRVk5sUkhWa2ExVTBaR2MyTXpFeU5GTnZkRWt5TTAxV2FWSnJha3hsTnpCbVNqQjNWa1pzZWpKVk9WVUtaa2t5UlV3eWFUSjBXa1J5UjFaRVl5c3lNR0ZhU0c0eFJWUjVjVlpNYWtncllreHdVVlpCTUhab1FsTkRUVzkxUTJKUk0zVjZPU3M1VVdOVlJWaDVlQW92U0VSV2FXNXpibGwzTW5GRFZrWkRTbkpQUkM5TFNrUnhjRVJqUkVKc1QyNUVVVXBVTjJaUVRGaHZTRVZ6WTJKamRYbEtPVFZxSzNSaVlYQkJOMnc0Q21OeVNFdFZRbkIwUWprMFZuRXhaVGRLVkRsaVJEUnZaalppZWpadFltbFVWbnBrTWpKaGVUSnpXa294TVU1Q2VIQm5NRkExUXpsa1JubGFiRFpFVW1zS09VTjRSelJOVUhobWJVUlJTR1J3WXpFMFJtdFlUMU14VEVKUk1tRjNTMVJhTlVGeFIxbHlkV1FyTnpOd1MySTRWRE5oVEhReWJqazJaVmR5ZWk5d1pBcG5NMWRZWTFveU9FMVdOVTQ1TURkWVMyMHdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZiRmhsVGtoUk1tTlFWazB5V0RSTE9XdEhhMWQyUWpWcE5HZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJTVWRzUlZsS1RqSnhaMFptWVhkbWJGaEljQzh5Ulc1SFJYVnZTa2wxTkVaWFFtVlJXQ3MxVG5oVGFYRlVkRFZ6YlFweVZVRlpVa0ZSWWt4b01WWnpWa05yZWt0Qk5GVmpTM1pYY0RoSk9XMW9kalZNUlRKaVNIaDJRbTlvY2tndldWcHFUVXQxVUZBNFkxazJNWEJHUm5GS0NtaExSREpXUVRKd2MzZGpjMGRzWTBSd1psVkRMM05GYURGa1VVTmFSR2t6YjFScFpEUnFORlZEYVZCdlFUa3dTMms1ZW1rMGQyUnFXWGd4V1VkeUt6UUtaM1IxU2xFNFFrTXJaRUo0VkhoVllrRm5VR0pCVjB0NFVuTk9SREpIVFVkRloxZFhXVmhJVVV4elFrcEhLM2hDVDFSc01pOU9TM1Z6SzNKRFZYVTVjUW96WWtOak5tdzFhbWNyYlRaQ1JHcFZLelk1Y0RaemFWUXJPVU5VV1c1MmIybGtVM0IzVG5aRkswTndhbnBVZFRsSlN6RjNOMXBCUzFSU1YyVTNSMWd6Q2xKUFMxaERUMk5vVTFwRFVEUnFXWFpwYUdKb01HY3llamwzZURoTGEzSnRSRlZyVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2RkMGY1MWYwLTEzODItNGFkNy04YTY0LWEyYmU0N2FlYTUxNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSc1JieWhMc0FnY2RlbmY4eFRZc1MxWjAzdlN2bkh0TXE5TWZwcmZBUkphcHltWlc2TnNNRUNrZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:36.596073Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-10-18T16:43:38.070338Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2620" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,7 +203,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14b53d26-ad91-4888-9f49-48d202d8027a + - 0726ceca-0781-4150-a182-e90e57bc91f7 status: 200 OK code: 200 duration: "" @@ -212,19 +214,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.808456Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-09-01T16:16:00.305783Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:36.596073Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-10-18T16:43:38.070338Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1429" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05c0e82f-2231-4079-a275-f0d4ea3edefb + - 0c467c08-4b43-4d5e-a9b5-543363bf2ca2 status: 200 OK code: 200 duration: "" @@ -245,19 +247,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.808456Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-09-01T16:16:00.305783Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JOZWs0eGIxaEVWRTE2VFZSQmVFNTZSVEpPUkUxNlRqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNkckNsSTFSRGR4UjBvelkyVm1OMWR6VmxGM1RXSmxVMll3ZHpaVE0yOWFUSGhaTkZOSllVazBZMGhaY214aFFrUkNMMUExVWxOVU9TOVhaVlZaVFN0NVRsb0tNM1JUVmpOcFIydFBZWHBWTTA5TGJ6bHZRM0JyVnpneE5HdHVUamswUzJsM1kyTmlibEo1VVV4cFFXVkdRV2hIU0dOYU1FUlpOek5VUld4TlVVdENNZ3BTWjBkck5XTlRkVlZFY2pCa05rVlliRkU0YTNCU01XYzNTaXRIUm5VM1EydFlZVkZuZG5wcE5WTlRlVVE0U2taWGF6RnZabVU0UTJsTU1sVTRWMVEwQ2tRelMzRTNTVXN4Ynk4dlNGbExTalJDWlROa1dWa3lUV054U0d0cFRIQmlRbE5STkZoVmVqUjRVMUV4WmtSNVRuaHdSbkZ4ZUdaeFNraDNTelZZVGs4S2RqSlVTRkJoTXk5dWJEbHBRMk5ITjFCcFIwdDRORll5TlRFeVVGVlBiRkp3VlZacmQzTXdhMmcwWTFONWFFNXRRVkZHT1RRcllWUm1SRVI0WkdaQ2N3b3ZkV2hhTkVWNFNHZGhOemMyUkVNeFVrYzRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaV3B6UzJkVVIwWllhblppZHpFNVJXdDRTREZoWlM5RWNrRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRTRTV5VUZKVWJqazJkM1ZvWlhKTFNXVmlUbnB4Ym1adlRtMW9iMkphZGxKNmRYcEVTRmhvWVRSdU5GbGFVMHhoVEFvM1RpOXpZbnBvZWpscFpYaHhObU53Y21WVmR6ZzFlRkU0TDJObldrRnVTSFpYV1VSRlRqaDNPVFpPZGk4MldIWjZOMXBZVUZvck5FcDJjbk5QU21SUENtSlRWbEYzWldOS2IwaHZZWEF3WjBGcWFHdDRZUzlLYlVoME0za3hObGhpV1dkVE0xaFdaWFEwWWl0R2IySlVXVGx5Tkc5aGNtdGFUMlF6VUZjNFoxY0tZa1U1UWtoYVNIUkJaM0kzUWpaSVpUVlBlazVFZWtWNGFuVlNVV04xV2pOSE5rNVNTRmgwVGxFeFFYUkdPR2RrVEdaR04zRkNNMVZCV0daTFJrWlRWd280YjBZeGVYaERTa3RIUzI0eWVuYzVaSFpGV1ZkWGExUmpPR3RFV1ZRdlkwOXRaakZWUm01MU0yaFRVelJpT0VScFR6QjJlRGhFYVdsQk4xRXlVRzVwQ25aeFltVjZTMDF2U1RKeFEyaENjbFJxTkRSWVVHSkNOalZ5WVdKME9YTnBiVk15THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2JlNGFkMzI3LWU0Y2QtNDc2ZS1iMzdkLWUzMmUwMjA4NTAxNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpZDJQcjRSbUNOY3hUd0ZKWE9BQXZ0QnRUWUFNanNxRm83T3ZoRGRTekVGWXhxNkRTZFlqbFY3MA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1429" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -267,7 +269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f59454c-5451-4f65-9390-67a3125271e6 + - 3051cae8-e59f-4048-a70a-676ac3a80946 status: 200 OK code: 200 duration: "" @@ -278,19 +280,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzBrMkNrWmhRME12TmtVeGNYQm9aVlZWWW5kSFRqaEVRVk5sUkhWa2ExVTBaR2MyTXpFeU5GTnZkRWt5TTAxV2FWSnJha3hsTnpCbVNqQjNWa1pzZWpKVk9WVUtaa2t5UlV3eWFUSjBXa1J5UjFaRVl5c3lNR0ZhU0c0eFJWUjVjVlpNYWtncllreHdVVlpCTUhab1FsTkRUVzkxUTJKUk0zVjZPU3M1VVdOVlJWaDVlQW92U0VSV2FXNXpibGwzTW5GRFZrWkRTbkpQUkM5TFNrUnhjRVJqUkVKc1QyNUVVVXBVTjJaUVRGaHZTRVZ6WTJKamRYbEtPVFZxSzNSaVlYQkJOMnc0Q21OeVNFdFZRbkIwUWprMFZuRXhaVGRLVkRsaVJEUnZaalppZWpadFltbFVWbnBrTWpKaGVUSnpXa294TVU1Q2VIQm5NRkExUXpsa1JubGFiRFpFVW1zS09VTjRSelJOVUhobWJVUlJTR1J3WXpFMFJtdFlUMU14VEVKUk1tRjNTMVJhTlVGeFIxbHlkV1FyTnpOd1MySTRWRE5oVEhReWJqazJaVmR5ZWk5d1pBcG5NMWRZWTFveU9FMVdOVTQ1TURkWVMyMHdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZiRmhsVGtoUk1tTlFWazB5V0RSTE9XdEhhMWQyUWpWcE5HZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJTVWRzUlZsS1RqSnhaMFptWVhkbWJGaEljQzh5Ulc1SFJYVnZTa2wxTkVaWFFtVlJXQ3MxVG5oVGFYRlVkRFZ6YlFweVZVRlpVa0ZSWWt4b01WWnpWa05yZWt0Qk5GVmpTM1pYY0RoSk9XMW9kalZNUlRKaVNIaDJRbTlvY2tndldWcHFUVXQxVUZBNFkxazJNWEJHUm5GS0NtaExSREpXUVRKd2MzZGpjMGRzWTBSd1psVkRMM05GYURGa1VVTmFSR2t6YjFScFpEUnFORlZEYVZCdlFUa3dTMms1ZW1rMGQyUnFXWGd4V1VkeUt6UUtaM1IxU2xFNFFrTXJaRUo0VkhoVllrRm5VR0pCVjB0NFVuTk9SREpIVFVkRloxZFhXVmhJVVV4elFrcEhLM2hDVDFSc01pOU9TM1Z6SzNKRFZYVTVjUW96WWtOak5tdzFhbWNyYlRaQ1JHcFZLelk1Y0RaemFWUXJPVU5VV1c1MmIybGtVM0IzVG5aRkswTndhbnBVZFRsSlN6RjNOMXBCUzFSU1YyVTNSMWd6Q2xKUFMxaERUMk5vVTFwRFVEUnFXWFpwYUdKb01HY3llamwzZURoTGEzSnRSRlZyVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2RkMGY1MWYwLTEzODItNGFkNy04YTY0LWEyYmU0N2FlYTUxNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSc1JieWhMc0FnY2RlbmY4eFRZc1MxWjAzdlN2bkh0TXE5TWZwcmZBUkphcHltWlc2TnNNRUNrZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:36.596073Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-10-18T16:43:38.070338Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2620" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +302,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97b24cbe-dc5a-48e5-bdf6-aea7ec61efae + - eab31cc5-1711-491e-8e37-b6ad05799241 status: 200 OK code: 200 duration: "" @@ -311,19 +313,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e119ab2a-cb88-4b75-b93d-94e1eabcf342 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.808456Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-09-01T16:16:00.305783Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"created_at":"2023-10-18T16:43:35.686906Z","dhcp_enabled":true,"id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:35.686906Z","id":"6e957e34-653e-4fed-ad63-38ba4eb78285","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:43:35.686906Z"},{"created_at":"2023-10-18T16:43:35.686906Z","id":"975a8ca4-bf73-442f-8fed-25cd29f6029e","subnet":"fd63:256c:45f7:91b4::/64","updated_at":"2023-10-18T16:43:35.686906Z"}],"tags":[],"updated_at":"2023-10-18T16:43:35.686906Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "1429" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +335,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b44f96ed-fd44-400b-a1d3-98dc216ebdb5 + - c4ee71f3-16d8-40e2-9001-d4f80a30d99f status: 200 OK code: 200 duration: "" @@ -344,19 +346,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzBrMkNrWmhRME12TmtVeGNYQm9aVlZWWW5kSFRqaEVRVk5sUkhWa2ExVTBaR2MyTXpFeU5GTnZkRWt5TTAxV2FWSnJha3hsTnpCbVNqQjNWa1pzZWpKVk9WVUtaa2t5UlV3eWFUSjBXa1J5UjFaRVl5c3lNR0ZhU0c0eFJWUjVjVlpNYWtncllreHdVVlpCTUhab1FsTkRUVzkxUTJKUk0zVjZPU3M1VVdOVlJWaDVlQW92U0VSV2FXNXpibGwzTW5GRFZrWkRTbkpQUkM5TFNrUnhjRVJqUkVKc1QyNUVVVXBVTjJaUVRGaHZTRVZ6WTJKamRYbEtPVFZxSzNSaVlYQkJOMnc0Q21OeVNFdFZRbkIwUWprMFZuRXhaVGRLVkRsaVJEUnZaalppZWpadFltbFVWbnBrTWpKaGVUSnpXa294TVU1Q2VIQm5NRkExUXpsa1JubGFiRFpFVW1zS09VTjRSelJOVUhobWJVUlJTR1J3WXpFMFJtdFlUMU14VEVKUk1tRjNTMVJhTlVGeFIxbHlkV1FyTnpOd1MySTRWRE5oVEhReWJqazJaVmR5ZWk5d1pBcG5NMWRZWTFveU9FMVdOVTQ1TURkWVMyMHdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZiRmhsVGtoUk1tTlFWazB5V0RSTE9XdEhhMWQyUWpWcE5HZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJTVWRzUlZsS1RqSnhaMFptWVhkbWJGaEljQzh5Ulc1SFJYVnZTa2wxTkVaWFFtVlJXQ3MxVG5oVGFYRlVkRFZ6YlFweVZVRlpVa0ZSWWt4b01WWnpWa05yZWt0Qk5GVmpTM1pYY0RoSk9XMW9kalZNUlRKaVNIaDJRbTlvY2tndldWcHFUVXQxVUZBNFkxazJNWEJHUm5GS0NtaExSREpXUVRKd2MzZGpjMGRzWTBSd1psVkRMM05GYURGa1VVTmFSR2t6YjFScFpEUnFORlZEYVZCdlFUa3dTMms1ZW1rMGQyUnFXWGd4V1VkeUt6UUtaM1IxU2xFNFFrTXJaRUo0VkhoVllrRm5VR0pCVjB0NFVuTk9SREpIVFVkRloxZFhXVmhJVVV4elFrcEhLM2hDVDFSc01pOU9TM1Z6SzNKRFZYVTVjUW96WWtOak5tdzFhbWNyYlRaQ1JHcFZLelk1Y0RaemFWUXJPVU5VV1c1MmIybGtVM0IzVG5aRkswTndhbnBVZFRsSlN6RjNOMXBCUzFSU1YyVTNSMWd6Q2xKUFMxaERUMk5vVTFwRFVEUnFXWFpwYUdKb01HY3llamwzZURoTGEzSnRSRlZyVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2RkMGY1MWYwLTEzODItNGFkNy04YTY0LWEyYmU0N2FlYTUxNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSc1JieWhMc0FnY2RlbmY4eFRZc1MxWjAzdlN2bkh0TXE5TWZwcmZBUkphcHltWlc2TnNNRUNrZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:36.596073Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-10-18T16:43:38.070338Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2620" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +368,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 080b1b5c-022c-4f11-b9fe-73ceeb190a22 + - 971bb444-1b7c-4d3d-8509-56ae094c7833 status: 200 OK code: 200 duration: "" @@ -377,19 +379,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/kubeconfig method: GET response: - body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":500,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JOZWs0eGIxaEVWRTE2VFZSQmVFNTZSVEpPUkUxNlRqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNkckNsSTFSRGR4UjBvelkyVm1OMWR6VmxGM1RXSmxVMll3ZHpaVE0yOWFUSGhaTkZOSllVazBZMGhaY214aFFrUkNMMUExVWxOVU9TOVhaVlZaVFN0NVRsb0tNM1JUVmpOcFIydFBZWHBWTTA5TGJ6bHZRM0JyVnpneE5HdHVUamswUzJsM1kyTmlibEo1VVV4cFFXVkdRV2hIU0dOYU1FUlpOek5VUld4TlVVdENNZ3BTWjBkck5XTlRkVlZFY2pCa05rVlliRkU0YTNCU01XYzNTaXRIUm5VM1EydFlZVkZuZG5wcE5WTlRlVVE0U2taWGF6RnZabVU0UTJsTU1sVTRWMVEwQ2tRelMzRTNTVXN4Ynk4dlNGbExTalJDWlROa1dWa3lUV054U0d0cFRIQmlRbE5STkZoVmVqUjRVMUV4WmtSNVRuaHdSbkZ4ZUdaeFNraDNTelZZVGs4S2RqSlVTRkJoTXk5dWJEbHBRMk5ITjFCcFIwdDRORll5TlRFeVVGVlBiRkp3VlZacmQzTXdhMmcwWTFONWFFNXRRVkZHT1RRcllWUm1SRVI0WkdaQ2N3b3ZkV2hhTkVWNFNHZGhOemMyUkVNeFVrYzRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaV3B6UzJkVVIwWllhblppZHpFNVJXdDRTREZoWlM5RWNrRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRTRTV5VUZKVWJqazJkM1ZvWlhKTFNXVmlUbnB4Ym1adlRtMW9iMkphZGxKNmRYcEVTRmhvWVRSdU5GbGFVMHhoVEFvM1RpOXpZbnBvZWpscFpYaHhObU53Y21WVmR6ZzFlRkU0TDJObldrRnVTSFpYV1VSRlRqaDNPVFpPZGk4MldIWjZOMXBZVUZvck5FcDJjbk5QU21SUENtSlRWbEYzWldOS2IwaHZZWEF3WjBGcWFHdDRZUzlLYlVoME0za3hObGhpV1dkVE0xaFdaWFEwWWl0R2IySlVXVGx5Tkc5aGNtdGFUMlF6VUZjNFoxY0tZa1U1UWtoYVNIUkJaM0kzUWpaSVpUVlBlazVFZWtWNGFuVlNVV04xV2pOSE5rNVNTRmgwVGxFeFFYUkdPR2RrVEdaR04zRkNNMVZCV0daTFJrWlRWd280YjBZeGVYaERTa3RIUzI0eWVuYzVaSFpGV1ZkWGExUmpPR3RFV1ZRdlkwOXRaakZWUm01MU0yaFRVelJpT0VScFR6QjJlRGhFYVdsQk4xRXlVRzVwQ25aeFltVjZTMDF2U1RKeFEyaENjbFJxTkRSWVVHSkNOalZ5WVdKME9YTnBiVk15THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2JlNGFkMzI3LWU0Y2QtNDc2ZS1iMzdkLWUzMmUwMjA4NTAxNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpZDJQcjRSbUNOY3hUd0ZKWE9BQXZ0QnRUWUFNanNxRm83T3ZoRGRTekVGWXhxNkRTZFlqbFY3MA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "748" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +401,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56d494b0-b1ef-4f18-9c9a-c5cacbdd6b0f + - be0d43e7-aff8-4963-90e0-6b3b8efc3ac9 status: 200 OK code: 200 duration: "" @@ -410,19 +412,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/available-types + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e119ab2a-cb88-4b75-b93d-94e1eabcf342 method: GET response: - body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":500,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}' + body: '{"created_at":"2023-10-18T16:43:35.686906Z","dhcp_enabled":true,"id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:35.686906Z","id":"6e957e34-653e-4fed-ad63-38ba4eb78285","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:43:35.686906Z"},{"created_at":"2023-10-18T16:43:35.686906Z","id":"975a8ca4-bf73-442f-8fed-25cd29f6029e","subnet":"fd63:256c:45f7:91b4::/64","updated_at":"2023-10-18T16:43:35.686906Z"}],"tags":[],"updated_at":"2023-10-18T16:43:35.686906Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "748" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:02 GMT + - Wed, 18 Oct 2023 16:43:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,7 +434,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d3b0e79-9924-4ee4-b67e-6cfd1443ca2f + - 9dcb100a-6b8f-4bc2-8b54-2cc87477d712 status: 200 OK code: 200 duration: "" @@ -443,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":500,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:36.596073Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-10-18T16:43:38.070338Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "748" + - "1508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:03 GMT + - Wed, 18 Oct 2023 16:43:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -465,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 268375e0-5a43-4c07-b933-8fbf02e27e7b + - 49b07bec-4bb2-4dc7-b61e-0373a69745ad status: 200 OK code: 200 duration: "" @@ -476,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-09-01T16:15:56.808456Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-09-01T16:16:00.305783Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JOZWs0eGIxaEVWRTE2VFZSQmVFNTZSVEpPUkUxNlRqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNkckNsSTFSRGR4UjBvelkyVm1OMWR6VmxGM1RXSmxVMll3ZHpaVE0yOWFUSGhaTkZOSllVazBZMGhaY214aFFrUkNMMUExVWxOVU9TOVhaVlZaVFN0NVRsb0tNM1JUVmpOcFIydFBZWHBWTTA5TGJ6bHZRM0JyVnpneE5HdHVUamswUzJsM1kyTmlibEo1VVV4cFFXVkdRV2hIU0dOYU1FUlpOek5VUld4TlVVdENNZ3BTWjBkck5XTlRkVlZFY2pCa05rVlliRkU0YTNCU01XYzNTaXRIUm5VM1EydFlZVkZuZG5wcE5WTlRlVVE0U2taWGF6RnZabVU0UTJsTU1sVTRWMVEwQ2tRelMzRTNTVXN4Ynk4dlNGbExTalJDWlROa1dWa3lUV054U0d0cFRIQmlRbE5STkZoVmVqUjRVMUV4WmtSNVRuaHdSbkZ4ZUdaeFNraDNTelZZVGs4S2RqSlVTRkJoTXk5dWJEbHBRMk5ITjFCcFIwdDRORll5TlRFeVVGVlBiRkp3VlZacmQzTXdhMmcwWTFONWFFNXRRVkZHT1RRcllWUm1SRVI0WkdaQ2N3b3ZkV2hhTkVWNFNHZGhOemMyUkVNeFVrYzRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaV3B6UzJkVVIwWllhblppZHpFNVJXdDRTREZoWlM5RWNrRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRTRTV5VUZKVWJqazJkM1ZvWlhKTFNXVmlUbnB4Ym1adlRtMW9iMkphZGxKNmRYcEVTRmhvWVRSdU5GbGFVMHhoVEFvM1RpOXpZbnBvZWpscFpYaHhObU53Y21WVmR6ZzFlRkU0TDJObldrRnVTSFpYV1VSRlRqaDNPVFpPZGk4MldIWjZOMXBZVUZvck5FcDJjbk5QU21SUENtSlRWbEYzWldOS2IwaHZZWEF3WjBGcWFHdDRZUzlLYlVoME0za3hObGhpV1dkVE0xaFdaWFEwWWl0R2IySlVXVGx5Tkc5aGNtdGFUMlF6VUZjNFoxY0tZa1U1UWtoYVNIUkJaM0kzUWpaSVpUVlBlazVFZWtWNGFuVlNVV04xV2pOSE5rNVNTRmgwVGxFeFFYUkdPR2RrVEdaR04zRkNNMVZCV0daTFJrWlRWd280YjBZeGVYaERTa3RIUzI0eWVuYzVaSFpGV1ZkWGExUmpPR3RFV1ZRdlkwOXRaakZWUm01MU0yaFRVelJpT0VScFR6QjJlRGhFYVdsQk4xRXlVRzVwQ25aeFltVjZTMDF2U1RKeFEyaENjbFJxTkRSWVVHSkNOalZ5WVdKME9YTnBiVk15THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2JlNGFkMzI3LWU0Y2QtNDc2ZS1iMzdkLWUzMmUwMjA4NTAxNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpZDJQcjRSbUNOY3hUd0ZKWE9BQXZ0QnRUWUFNanNxRm83T3ZoRGRTekVGWXhxNkRTZFlqbFY3MA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1429" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:03 GMT + - Wed, 18 Oct 2023 16:43:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -498,32 +500,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 742c941e-cef2-4005-84d3-474e67798c67 + - b8c89212-b65d-4893-89a0-70adfcd79d6e status: 200 OK code: 200 duration: "" - request: - body: '{"type":"kapsule-dedicated-4"}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/available-types + method: GET + response: + body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}' + headers: + Content-Length: + - "780" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 16:43:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f1f9940-f9b8-4526-86f0-7ec6654f2409 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/set-type - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/available-types + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048221Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397530717Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}' headers: Content-Length: - - "1442" + - "780" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:03 GMT + - Wed, 18 Oct 2023 16:43:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +566,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 434c531c-5785-4581-a7be-9734bb18539f + - 4c3ed2d6-d361-4638-b9a7-04efbda77d27 status: 200 OK code: 200 duration: "" @@ -544,19 +577,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/available-types method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"cluster_types":[{"availability":"available","commitment_delay":"0s","dedicated":false,"max_nodes":150,"memory":4000000000,"name":"kapsule","resiliency":"standard","sla":0},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":250,"memory":4000000000,"name":"kapsule-dedicated-4","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":4}' headers: Content-Length: - - "1436" + - "780" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:03 GMT + - Wed, 18 Oct 2023 16:43:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +599,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e647a2cb-3336-488e-acb6-a72d566300a3 + - dad99014-42d7-4a76-beb2-98d8ba4d6de0 status: 200 OK code: 200 duration: "" @@ -577,19 +610,54 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-18T16:43:36.596073Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"pool_required","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule","updated_at":"2023-10-18T16:43:38.070338Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1508" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:43:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e040e1af-e1c2-4c13-9ebe-0ac7b7b3b7b8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"type":"kapsule-dedicated-4"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/set-type + method: POST + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038006659Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:43:44.096667753Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:08 GMT + - Wed, 18 Oct 2023 16:43:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b75a0dc2-0bb3-46e2-9650-8daf880b8d99 + - 54bf71c4-133d-4e1f-bd11-f43df9401e28 status: 200 OK code: 200 duration: "" @@ -610,19 +678,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:43:44.096668Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:14 GMT + - Wed, 18 Oct 2023 16:43:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2360bdf-4489-4b4b-98a6-f79b18ff9bd7 + - 56c76337-5108-4e0f-ba07-00c5ff5ba45f status: 200 OK code: 200 duration: "" @@ -643,19 +711,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:43:44.096668Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:19 GMT + - Wed, 18 Oct 2023 16:43:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dad8f49-84c8-447b-89d7-3413740f3966 + - 81e644fa-a46c-4f77-b626-23e495a92783 status: 200 OK code: 200 duration: "" @@ -676,19 +744,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:43:44.096668Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:24 GMT + - Wed, 18 Oct 2023 16:43:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c87532ce-4faa-4267-86c6-a2fff941757c + - 74f54752-a907-4e15-8951-428a7cd7ea39 status: 200 OK code: 200 duration: "" @@ -709,19 +777,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:43:44.096668Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:29 GMT + - Wed, 18 Oct 2023 16:43:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8d31f2a-ff40-42ff-a81a-e5fbf73eeab6 + - e77b51a8-b1cc-4272-8c23-47b3d6d3e93d status: 200 OK code: 200 duration: "" @@ -742,19 +810,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:43:44.096668Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:34 GMT + - Wed, 18 Oct 2023 16:44:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3e9e2c1-289c-4c36-b301-a9cab4933522 + - f0c932f5-2522-4813-afd3-2c7fa1928224 status: 200 OK code: 200 duration: "" @@ -775,19 +843,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:43:44.096668Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:39 GMT + - Wed, 18 Oct 2023 16:44:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -797,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d51c710-b8ea-48d7-84fa-e0aa36bbc8b9 + - 6be01ee4-1d35-4c95-baa5-d8eaf172e059 status: 200 OK code: 200 duration: "" @@ -808,19 +876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:43:44.096668Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:44 GMT + - Wed, 18 Oct 2023 16:44:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -830,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b70f95c2-adb8-4436-8cdc-ae6460eae821 + - 9596389f-25a1-400e-90d4-dd342c8bd61b status: 200 OK code: 200 duration: "" @@ -841,19 +909,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:43:44.096668Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:49 GMT + - Wed, 18 Oct 2023 16:44:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -863,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76210e1a-1595-4289-af07-582769a81ecb + - df2ff562-a67a-41b3-8c82-f59933ae93ef status: 200 OK code: 200 duration: "" @@ -874,19 +942,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:43:44.096668Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:54 GMT + - Wed, 18 Oct 2023 16:44:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -896,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc0f44ca-0a70-4317-b5e5-6a3ff9813c99 + - 31175438-f794-4f48-852a-d2e4d21a94e1 status: 200 OK code: 200 duration: "" @@ -907,19 +975,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:16:03.397531Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:43:44.096668Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:16:59 GMT + - Wed, 18 Oct 2023 16:44:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d2e787b-8350-4e8c-b176-dbc681d00867 + - f171c24c-def0-491a-abb3-d409af98b1c9 status: 200 OK code: 200 duration: "" @@ -940,19 +1008,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:02.198784Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:44:33.741316Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:04 GMT + - Wed, 18 Oct 2023 16:44:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -962,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55f1e846-eab4-4634-a5d0-990fc4872b5d + - 40b0b043-1dee-4fdb-a9eb-f9e836f988a2 status: 200 OK code: 200 duration: "" @@ -975,19 +1043,85 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: PATCH response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:04.711572615Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:44:34.803686860Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1518" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2f85401d-6448-4930-8395-c86f20f41b86 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:44:34.803687Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1515" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:44:34 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2aef345-24b1-4cf2-881b-c2c444a991d0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:44:34.803687Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1439" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:04 GMT + - Wed, 18 Oct 2023 16:44:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -997,7 +1131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4357d389-6311-43dc-ac43-cf4413579ece + - 328709ec-71da-4a0c-b876-342a62a021e7 status: 200 OK code: 200 duration: "" @@ -1008,19 +1142,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:04.711573Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:44:34.803687Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:04 GMT + - Wed, 18 Oct 2023 16:44:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1030,7 +1164,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8708c842-b9e4-49a4-b47c-1e2bc3f1d220 + - e16dea11-a659-4375-8c9c-b658c3466cac status: 200 OK code: 200 duration: "" @@ -1041,19 +1175,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:04.711573Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:44:34.803687Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:09 GMT + - Wed, 18 Oct 2023 16:44:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1063,7 +1197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b58e84c-c867-440d-8a6a-819d4f2846d5 + - 5dd0669c-6172-4cfb-9792-5d7d61716cc1 status: 200 OK code: 200 duration: "" @@ -1074,19 +1208,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:04.711573Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:44:34.803687Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:14 GMT + - Wed, 18 Oct 2023 16:44:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1096,7 +1230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d04e23d9-5a5d-4613-a0a7-09ef5e07e45e + - 0da57a14-fa02-46dd-8711-e9706246ae9e status: 200 OK code: 200 duration: "" @@ -1107,19 +1241,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:04.711573Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:44:34.803687Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:19 GMT + - Wed, 18 Oct 2023 16:45:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1129,7 +1263,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e0db032-e885-40b7-9fcc-7577a52cf66d + - b0a1eb96-8a84-49e8-b160-5dbfab73128b status: 200 OK code: 200 duration: "" @@ -1140,19 +1274,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:04.711573Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:44:34.803687Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:25 GMT + - Wed, 18 Oct 2023 16:45:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1162,7 +1296,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c31101e-1e15-444d-9f83-c187cef07839 + - cb7eeef1-c9f1-41e2-a2ef-4054a3fd2e87 status: 200 OK code: 200 duration: "" @@ -1173,19 +1307,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:04.711573Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:45:06.181690Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:30 GMT + - Wed, 18 Oct 2023 16:45:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1195,7 +1329,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9b0644a-3891-41c9-9aa4-17bc288fb39a + - 6a9c16a3-9027-4250-b441-4cdb3015dd0a status: 200 OK code: 200 duration: "" @@ -1206,19 +1340,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:04.711573Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:45:06.181690Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:35 GMT + - Wed, 18 Oct 2023 16:45:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1228,7 +1362,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5df0a045-b2bf-479c-a7e5-8039fd719edc + - 7f7431c5-35e0-4a90-8022-26568f1a7197 status: 200 OK code: 200 duration: "" @@ -1239,19 +1373,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:37.926915Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JOZWs0eGIxaEVWRTE2VFZSQmVFNTZSVEpPUkUxNlRqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNkckNsSTFSRGR4UjBvelkyVm1OMWR6VmxGM1RXSmxVMll3ZHpaVE0yOWFUSGhaTkZOSllVazBZMGhaY214aFFrUkNMMUExVWxOVU9TOVhaVlZaVFN0NVRsb0tNM1JUVmpOcFIydFBZWHBWTTA5TGJ6bHZRM0JyVnpneE5HdHVUamswUzJsM1kyTmlibEo1VVV4cFFXVkdRV2hIU0dOYU1FUlpOek5VUld4TlVVdENNZ3BTWjBkck5XTlRkVlZFY2pCa05rVlliRkU0YTNCU01XYzNTaXRIUm5VM1EydFlZVkZuZG5wcE5WTlRlVVE0U2taWGF6RnZabVU0UTJsTU1sVTRWMVEwQ2tRelMzRTNTVXN4Ynk4dlNGbExTalJDWlROa1dWa3lUV054U0d0cFRIQmlRbE5STkZoVmVqUjRVMUV4WmtSNVRuaHdSbkZ4ZUdaeFNraDNTelZZVGs4S2RqSlVTRkJoTXk5dWJEbHBRMk5ITjFCcFIwdDRORll5TlRFeVVGVlBiRkp3VlZacmQzTXdhMmcwWTFONWFFNXRRVkZHT1RRcllWUm1SRVI0WkdaQ2N3b3ZkV2hhTkVWNFNHZGhOemMyUkVNeFVrYzRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaV3B6UzJkVVIwWllhblppZHpFNVJXdDRTREZoWlM5RWNrRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRTRTV5VUZKVWJqazJkM1ZvWlhKTFNXVmlUbnB4Ym1adlRtMW9iMkphZGxKNmRYcEVTRmhvWVRSdU5GbGFVMHhoVEFvM1RpOXpZbnBvZWpscFpYaHhObU53Y21WVmR6ZzFlRkU0TDJObldrRnVTSFpYV1VSRlRqaDNPVFpPZGk4MldIWjZOMXBZVUZvck5FcDJjbk5QU21SUENtSlRWbEYzWldOS2IwaHZZWEF3WjBGcWFHdDRZUzlLYlVoME0za3hObGhpV1dkVE0xaFdaWFEwWWl0R2IySlVXVGx5Tkc5aGNtdGFUMlF6VUZjNFoxY0tZa1U1UWtoYVNIUkJaM0kzUWpaSVpUVlBlazVFZWtWNGFuVlNVV04xV2pOSE5rNVNTRmgwVGxFeFFYUkdPR2RrVEdaR04zRkNNMVZCV0daTFJrWlRWd280YjBZeGVYaERTa3RIUzI0eWVuYzVaSFpGV1ZkWGExUmpPR3RFV1ZRdlkwOXRaakZWUm01MU0yaFRVelJpT0VScFR6QjJlRGhFYVdsQk4xRXlVRzVwQ25aeFltVjZTMDF2U1RKeFEyaENjbFJxTkRSWVVHSkNOalZ5WVdKME9YTnBiVk15THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2JlNGFkMzI3LWU0Y2QtNDc2ZS1iMzdkLWUzMmUwMjA4NTAxNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpZDJQcjRSbUNOY3hUd0ZKWE9BQXZ0QnRUWUFNanNxRm83T3ZoRGRTekVGWXhxNkRTZFlqbFY3MA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1433" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:40 GMT + - Wed, 18 Oct 2023 16:45:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1261,7 +1395,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f8b128e-47ea-4780-9838-64dd39944d19 + - 08745099-1990-4b30-8e49-4d09e1f2098f status: 200 OK code: 200 duration: "" @@ -1272,19 +1406,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:37.926915Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:45:06.181690Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:40 GMT + - Wed, 18 Oct 2023 16:45:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1294,7 +1428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71f97b23-fd0c-41b4-ba4e-7c9e9b93e459 + - 23e7104f-8209-4da2-9938-62d1020b1857 status: 200 OK code: 200 duration: "" @@ -1305,19 +1439,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e119ab2a-cb88-4b75-b93d-94e1eabcf342 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzBrMkNrWmhRME12TmtVeGNYQm9aVlZWWW5kSFRqaEVRVk5sUkhWa2ExVTBaR2MyTXpFeU5GTnZkRWt5TTAxV2FWSnJha3hsTnpCbVNqQjNWa1pzZWpKVk9WVUtaa2t5UlV3eWFUSjBXa1J5UjFaRVl5c3lNR0ZhU0c0eFJWUjVjVlpNYWtncllreHdVVlpCTUhab1FsTkRUVzkxUTJKUk0zVjZPU3M1VVdOVlJWaDVlQW92U0VSV2FXNXpibGwzTW5GRFZrWkRTbkpQUkM5TFNrUnhjRVJqUkVKc1QyNUVVVXBVTjJaUVRGaHZTRVZ6WTJKamRYbEtPVFZxSzNSaVlYQkJOMnc0Q21OeVNFdFZRbkIwUWprMFZuRXhaVGRLVkRsaVJEUnZaalppZWpadFltbFVWbnBrTWpKaGVUSnpXa294TVU1Q2VIQm5NRkExUXpsa1JubGFiRFpFVW1zS09VTjRSelJOVUhobWJVUlJTR1J3WXpFMFJtdFlUMU14VEVKUk1tRjNTMVJhTlVGeFIxbHlkV1FyTnpOd1MySTRWRE5oVEhReWJqazJaVmR5ZWk5d1pBcG5NMWRZWTFveU9FMVdOVTQ1TURkWVMyMHdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZiRmhsVGtoUk1tTlFWazB5V0RSTE9XdEhhMWQyUWpWcE5HZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJTVWRzUlZsS1RqSnhaMFptWVhkbWJGaEljQzh5Ulc1SFJYVnZTa2wxTkVaWFFtVlJXQ3MxVG5oVGFYRlVkRFZ6YlFweVZVRlpVa0ZSWWt4b01WWnpWa05yZWt0Qk5GVmpTM1pYY0RoSk9XMW9kalZNUlRKaVNIaDJRbTlvY2tndldWcHFUVXQxVUZBNFkxazJNWEJHUm5GS0NtaExSREpXUVRKd2MzZGpjMGRzWTBSd1psVkRMM05GYURGa1VVTmFSR2t6YjFScFpEUnFORlZEYVZCdlFUa3dTMms1ZW1rMGQyUnFXWGd4V1VkeUt6UUtaM1IxU2xFNFFrTXJaRUo0VkhoVllrRm5VR0pCVjB0NFVuTk9SREpIVFVkRloxZFhXVmhJVVV4elFrcEhLM2hDVDFSc01pOU9TM1Z6SzNKRFZYVTVjUW96WWtOak5tdzFhbWNyYlRaQ1JHcFZLelk1Y0RaemFWUXJPVU5VV1c1MmIybGtVM0IzVG5aRkswTndhbnBVZFRsSlN6RjNOMXBCUzFSU1YyVTNSMWd6Q2xKUFMxaERUMk5vVTFwRFVEUnFXWFpwYUdKb01HY3llamwzZURoTGEzSnRSRlZyVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2RkMGY1MWYwLTEzODItNGFkNy04YTY0LWEyYmU0N2FlYTUxNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSc1JieWhMc0FnY2RlbmY4eFRZc1MxWjAzdlN2bkh0TXE5TWZwcmZBUkphcHltWlc2TnNNRUNrZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:43:35.686906Z","dhcp_enabled":true,"id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:35.686906Z","id":"6e957e34-653e-4fed-ad63-38ba4eb78285","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:43:35.686906Z"},{"created_at":"2023-10-18T16:43:35.686906Z","id":"975a8ca4-bf73-442f-8fed-25cd29f6029e","subnet":"fd63:256c:45f7:91b4::/64","updated_at":"2023-10-18T16:43:35.686906Z"}],"tags":[],"updated_at":"2023-10-18T16:43:35.686906Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2620" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:40 GMT + - Wed, 18 Oct 2023 16:45:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1327,7 +1461,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0e5e38e-faa9-4cad-b09d-e03bc995b48e + - f860ea27-3889-464f-881d-92faee0c26bc status: 200 OK code: 200 duration: "" @@ -1338,19 +1472,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:37.926915Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:45:06.181690Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:40 GMT + - Wed, 18 Oct 2023 16:45:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1360,7 +1494,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0961d202-f7d4-4944-831b-bcc90f6236b9 + - abf4d2cd-c376-431f-914d-b870c284276e status: 200 OK code: 200 duration: "" @@ -1371,19 +1505,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:37.926915Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JOZWs0eGIxaEVWRTE2VFZSQmVFNTZSVEpPUkUxNlRqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNkckNsSTFSRGR4UjBvelkyVm1OMWR6VmxGM1RXSmxVMll3ZHpaVE0yOWFUSGhaTkZOSllVazBZMGhaY214aFFrUkNMMUExVWxOVU9TOVhaVlZaVFN0NVRsb0tNM1JUVmpOcFIydFBZWHBWTTA5TGJ6bHZRM0JyVnpneE5HdHVUamswUzJsM1kyTmlibEo1VVV4cFFXVkdRV2hIU0dOYU1FUlpOek5VUld4TlVVdENNZ3BTWjBkck5XTlRkVlZFY2pCa05rVlliRkU0YTNCU01XYzNTaXRIUm5VM1EydFlZVkZuZG5wcE5WTlRlVVE0U2taWGF6RnZabVU0UTJsTU1sVTRWMVEwQ2tRelMzRTNTVXN4Ynk4dlNGbExTalJDWlROa1dWa3lUV054U0d0cFRIQmlRbE5STkZoVmVqUjRVMUV4WmtSNVRuaHdSbkZ4ZUdaeFNraDNTelZZVGs4S2RqSlVTRkJoTXk5dWJEbHBRMk5ITjFCcFIwdDRORll5TlRFeVVGVlBiRkp3VlZacmQzTXdhMmcwWTFONWFFNXRRVkZHT1RRcllWUm1SRVI0WkdaQ2N3b3ZkV2hhTkVWNFNHZGhOemMyUkVNeFVrYzRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaV3B6UzJkVVIwWllhblppZHpFNVJXdDRTREZoWlM5RWNrRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRTRTV5VUZKVWJqazJkM1ZvWlhKTFNXVmlUbnB4Ym1adlRtMW9iMkphZGxKNmRYcEVTRmhvWVRSdU5GbGFVMHhoVEFvM1RpOXpZbnBvZWpscFpYaHhObU53Y21WVmR6ZzFlRkU0TDJObldrRnVTSFpYV1VSRlRqaDNPVFpPZGk4MldIWjZOMXBZVUZvck5FcDJjbk5QU21SUENtSlRWbEYzWldOS2IwaHZZWEF3WjBGcWFHdDRZUzlLYlVoME0za3hObGhpV1dkVE0xaFdaWFEwWWl0R2IySlVXVGx5Tkc5aGNtdGFUMlF6VUZjNFoxY0tZa1U1UWtoYVNIUkJaM0kzUWpaSVpUVlBlazVFZWtWNGFuVlNVV04xV2pOSE5rNVNTRmgwVGxFeFFYUkdPR2RrVEdaR04zRkNNMVZCV0daTFJrWlRWd280YjBZeGVYaERTa3RIUzI0eWVuYzVaSFpGV1ZkWGExUmpPR3RFV1ZRdlkwOXRaakZWUm01MU0yaFRVelJpT0VScFR6QjJlRGhFYVdsQk4xRXlVRzVwQ25aeFltVjZTMDF2U1RKeFEyaENjbFJxTkRSWVVHSkNOalZ5WVdKME9YTnBiVk15THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2JlNGFkMzI3LWU0Y2QtNDc2ZS1iMzdkLWUzMmUwMjA4NTAxNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpZDJQcjRSbUNOY3hUd0ZKWE9BQXZ0QnRUWUFNanNxRm83T3ZoRGRTekVGWXhxNkRTZFlqbFY3MA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1433" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:40 GMT + - Wed, 18 Oct 2023 16:45:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1393,7 +1527,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5afbb3a2-a384-420c-ad17-a2648a825b77 + - affe9e0b-54cd-4f63-97db-090be265a6bd status: 200 OK code: 200 duration: "" @@ -1404,19 +1538,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e119ab2a-cb88-4b75-b93d-94e1eabcf342 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzBrMkNrWmhRME12TmtVeGNYQm9aVlZWWW5kSFRqaEVRVk5sUkhWa2ExVTBaR2MyTXpFeU5GTnZkRWt5TTAxV2FWSnJha3hsTnpCbVNqQjNWa1pzZWpKVk9WVUtaa2t5UlV3eWFUSjBXa1J5UjFaRVl5c3lNR0ZhU0c0eFJWUjVjVlpNYWtncllreHdVVlpCTUhab1FsTkRUVzkxUTJKUk0zVjZPU3M1VVdOVlJWaDVlQW92U0VSV2FXNXpibGwzTW5GRFZrWkRTbkpQUkM5TFNrUnhjRVJqUkVKc1QyNUVVVXBVTjJaUVRGaHZTRVZ6WTJKamRYbEtPVFZxSzNSaVlYQkJOMnc0Q21OeVNFdFZRbkIwUWprMFZuRXhaVGRLVkRsaVJEUnZaalppZWpadFltbFVWbnBrTWpKaGVUSnpXa294TVU1Q2VIQm5NRkExUXpsa1JubGFiRFpFVW1zS09VTjRSelJOVUhobWJVUlJTR1J3WXpFMFJtdFlUMU14VEVKUk1tRjNTMVJhTlVGeFIxbHlkV1FyTnpOd1MySTRWRE5oVEhReWJqazJaVmR5ZWk5d1pBcG5NMWRZWTFveU9FMVdOVTQ1TURkWVMyMHdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZiRmhsVGtoUk1tTlFWazB5V0RSTE9XdEhhMWQyUWpWcE5HZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJTVWRzUlZsS1RqSnhaMFptWVhkbWJGaEljQzh5Ulc1SFJYVnZTa2wxTkVaWFFtVlJXQ3MxVG5oVGFYRlVkRFZ6YlFweVZVRlpVa0ZSWWt4b01WWnpWa05yZWt0Qk5GVmpTM1pYY0RoSk9XMW9kalZNUlRKaVNIaDJRbTlvY2tndldWcHFUVXQxVUZBNFkxazJNWEJHUm5GS0NtaExSREpXUVRKd2MzZGpjMGRzWTBSd1psVkRMM05GYURGa1VVTmFSR2t6YjFScFpEUnFORlZEYVZCdlFUa3dTMms1ZW1rMGQyUnFXWGd4V1VkeUt6UUtaM1IxU2xFNFFrTXJaRUo0VkhoVllrRm5VR0pCVjB0NFVuTk9SREpIVFVkRloxZFhXVmhJVVV4elFrcEhLM2hDVDFSc01pOU9TM1Z6SzNKRFZYVTVjUW96WWtOak5tdzFhbWNyYlRaQ1JHcFZLelk1Y0RaemFWUXJPVU5VV1c1MmIybGtVM0IzVG5aRkswTndhbnBVZFRsSlN6RjNOMXBCUzFSU1YyVTNSMWd6Q2xKUFMxaERUMk5vVTFwRFVEUnFXWFpwYUdKb01HY3llamwzZURoTGEzSnRSRlZyVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2RkMGY1MWYwLTEzODItNGFkNy04YTY0LWEyYmU0N2FlYTUxNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSc1JieWhMc0FnY2RlbmY4eFRZc1MxWjAzdlN2bkh0TXE5TWZwcmZBUkphcHltWlc2TnNNRUNrZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:43:35.686906Z","dhcp_enabled":true,"id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:35.686906Z","id":"6e957e34-653e-4fed-ad63-38ba4eb78285","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:43:35.686906Z"},{"created_at":"2023-10-18T16:43:35.686906Z","id":"975a8ca4-bf73-442f-8fed-25cd29f6029e","subnet":"fd63:256c:45f7:91b4::/64","updated_at":"2023-10-18T16:43:35.686906Z"}],"tags":[],"updated_at":"2023-10-18T16:43:35.686906Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2620" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:40 GMT + - Wed, 18 Oct 2023 16:45:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1426,7 +1560,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29c33ebd-08c9-4f6b-9db5-a08c1a63d22d + - 10663927-81b1-4c5c-8ad5-f0376927f141 status: 200 OK code: 200 duration: "" @@ -1437,19 +1571,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:37.926915Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:45:06.181690Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:40 GMT + - Wed, 18 Oct 2023 16:45:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1459,7 +1593,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce14743e-f8d5-4260-bac4-4fd886a68da4 + - 1353adec-19d0-4324-9841-adcbcf0a908d status: 200 OK code: 200 duration: "" @@ -1470,19 +1604,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzBrMkNrWmhRME12TmtVeGNYQm9aVlZWWW5kSFRqaEVRVk5sUkhWa2ExVTBaR2MyTXpFeU5GTnZkRWt5TTAxV2FWSnJha3hsTnpCbVNqQjNWa1pzZWpKVk9WVUtaa2t5UlV3eWFUSjBXa1J5UjFaRVl5c3lNR0ZhU0c0eFJWUjVjVlpNYWtncllreHdVVlpCTUhab1FsTkRUVzkxUTJKUk0zVjZPU3M1VVdOVlJWaDVlQW92U0VSV2FXNXpibGwzTW5GRFZrWkRTbkpQUkM5TFNrUnhjRVJqUkVKc1QyNUVVVXBVTjJaUVRGaHZTRVZ6WTJKamRYbEtPVFZxSzNSaVlYQkJOMnc0Q21OeVNFdFZRbkIwUWprMFZuRXhaVGRLVkRsaVJEUnZaalppZWpadFltbFVWbnBrTWpKaGVUSnpXa294TVU1Q2VIQm5NRkExUXpsa1JubGFiRFpFVW1zS09VTjRSelJOVUhobWJVUlJTR1J3WXpFMFJtdFlUMU14VEVKUk1tRjNTMVJhTlVGeFIxbHlkV1FyTnpOd1MySTRWRE5oVEhReWJqazJaVmR5ZWk5d1pBcG5NMWRZWTFveU9FMVdOVTQ1TURkWVMyMHdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZiRmhsVGtoUk1tTlFWazB5V0RSTE9XdEhhMWQyUWpWcE5HZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJTVWRzUlZsS1RqSnhaMFptWVhkbWJGaEljQzh5Ulc1SFJYVnZTa2wxTkVaWFFtVlJXQ3MxVG5oVGFYRlVkRFZ6YlFweVZVRlpVa0ZSWWt4b01WWnpWa05yZWt0Qk5GVmpTM1pYY0RoSk9XMW9kalZNUlRKaVNIaDJRbTlvY2tndldWcHFUVXQxVUZBNFkxazJNWEJHUm5GS0NtaExSREpXUVRKd2MzZGpjMGRzWTBSd1psVkRMM05GYURGa1VVTmFSR2t6YjFScFpEUnFORlZEYVZCdlFUa3dTMms1ZW1rMGQyUnFXWGd4V1VkeUt6UUtaM1IxU2xFNFFrTXJaRUo0VkhoVllrRm5VR0pCVjB0NFVuTk9SREpIVFVkRloxZFhXVmhJVVV4elFrcEhLM2hDVDFSc01pOU9TM1Z6SzNKRFZYVTVjUW96WWtOak5tdzFhbWNyYlRaQ1JHcFZLelk1Y0RaemFWUXJPVU5VV1c1MmIybGtVM0IzVG5aRkswTndhbnBVZFRsSlN6RjNOMXBCUzFSU1YyVTNSMWd6Q2xKUFMxaERUMk5vVTFwRFVEUnFXWFpwYUdKb01HY3llamwzZURoTGEzSnRSRlZyVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2RkMGY1MWYwLTEzODItNGFkNy04YTY0LWEyYmU0N2FlYTUxNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSc1JieWhMc0FnY2RlbmY4eFRZc1MxWjAzdlN2bkh0TXE5TWZwcmZBUkphcHltWlc2TnNNRUNrZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JOZWs0eGIxaEVWRTE2VFZSQmVFNTZSVEpPUkUxNlRqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNkckNsSTFSRGR4UjBvelkyVm1OMWR6VmxGM1RXSmxVMll3ZHpaVE0yOWFUSGhaTkZOSllVazBZMGhaY214aFFrUkNMMUExVWxOVU9TOVhaVlZaVFN0NVRsb0tNM1JUVmpOcFIydFBZWHBWTTA5TGJ6bHZRM0JyVnpneE5HdHVUamswUzJsM1kyTmlibEo1VVV4cFFXVkdRV2hIU0dOYU1FUlpOek5VUld4TlVVdENNZ3BTWjBkck5XTlRkVlZFY2pCa05rVlliRkU0YTNCU01XYzNTaXRIUm5VM1EydFlZVkZuZG5wcE5WTlRlVVE0U2taWGF6RnZabVU0UTJsTU1sVTRWMVEwQ2tRelMzRTNTVXN4Ynk4dlNGbExTalJDWlROa1dWa3lUV054U0d0cFRIQmlRbE5STkZoVmVqUjRVMUV4WmtSNVRuaHdSbkZ4ZUdaeFNraDNTelZZVGs4S2RqSlVTRkJoTXk5dWJEbHBRMk5ITjFCcFIwdDRORll5TlRFeVVGVlBiRkp3VlZacmQzTXdhMmcwWTFONWFFNXRRVkZHT1RRcllWUm1SRVI0WkdaQ2N3b3ZkV2hhTkVWNFNHZGhOemMyUkVNeFVrYzRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaV3B6UzJkVVIwWllhblppZHpFNVJXdDRTREZoWlM5RWNrRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRTRTV5VUZKVWJqazJkM1ZvWlhKTFNXVmlUbnB4Ym1adlRtMW9iMkphZGxKNmRYcEVTRmhvWVRSdU5GbGFVMHhoVEFvM1RpOXpZbnBvZWpscFpYaHhObU53Y21WVmR6ZzFlRkU0TDJObldrRnVTSFpYV1VSRlRqaDNPVFpPZGk4MldIWjZOMXBZVUZvck5FcDJjbk5QU21SUENtSlRWbEYzWldOS2IwaHZZWEF3WjBGcWFHdDRZUzlLYlVoME0za3hObGhpV1dkVE0xaFdaWFEwWWl0R2IySlVXVGx5Tkc5aGNtdGFUMlF6VUZjNFoxY0tZa1U1UWtoYVNIUkJaM0kzUWpaSVpUVlBlazVFZWtWNGFuVlNVV04xV2pOSE5rNVNTRmgwVGxFeFFYUkdPR2RrVEdaR04zRkNNMVZCV0daTFJrWlRWd280YjBZeGVYaERTa3RIUzI0eWVuYzVaSFpGV1ZkWGExUmpPR3RFV1ZRdlkwOXRaakZWUm01MU0yaFRVelJpT0VScFR6QjJlRGhFYVdsQk4xRXlVRzVwQ25aeFltVjZTMDF2U1RKeFEyaENjbFJxTkRSWVVHSkNOalZ5WVdKME9YTnBiVk15THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2JlNGFkMzI3LWU0Y2QtNDc2ZS1iMzdkLWUzMmUwMjA4NTAxNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpZDJQcjRSbUNOY3hUd0ZKWE9BQXZ0QnRUWUFNanNxRm83T3ZoRGRTekVGWXhxNkRTZFlqbFY3MA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2620" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:40 GMT + - Wed, 18 Oct 2023 16:45:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1492,7 +1626,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d2cefcf-6b7e-4056-95b1-f05d4940361b + - 1d63fe7a-7dc5-455d-87b8-d8d7096aa09c status: 200 OK code: 200 duration: "" @@ -1503,19 +1637,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/available-types method: GET response: body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}' headers: Content-Length: - - "407" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:40 GMT + - Wed, 18 Oct 2023 16:45:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1525,7 +1659,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1c9a9aa-196d-4d07-a541-e2906a807fae + - 6e2f7b21-4f34-4fa6-9fd6-99a6bd39a87d status: 200 OK code: 200 duration: "" @@ -1536,19 +1670,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/available-types method: GET response: body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}' headers: Content-Length: - - "407" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:41 GMT + - Wed, 18 Oct 2023 16:45:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1558,7 +1692,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bef651b-9500-4b5f-bf32-b6a6d56ca7d9 + - 6304f63f-457c-4193-9321-4b33b2706b9d status: 200 OK code: 200 duration: "" @@ -1569,19 +1703,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/available-types method: GET response: body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"kapsule-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}' headers: Content-Length: - - "407" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:41 GMT + - Wed, 18 Oct 2023 16:45:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1591,7 +1725,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b64c2523-49f0-4e87-8cd2-28aa76e642f8 + - 83235371-4aa7-40db-b165-cbdce129f7e6 status: 200 OK code: 200 duration: "" @@ -1602,19 +1736,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:16:03.320048Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-09-01T16:17:37.926915Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:43:44.038007Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-4","updated_at":"2023-10-18T16:45:06.181690Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:41 GMT + - Wed, 18 Oct 2023 16:45:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1624,7 +1758,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24bb906c-ce2d-4da4-bf0b-295dfd00e9b5 + - f2a30aa8-b8ff-4bcb-9487-7fa1c9be4de5 status: 200 OK code: 200 duration: "" @@ -1637,19 +1771,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/set-type + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/set-type method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465962645Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557501625Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441020Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644907841Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1443" + - "1522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:41 GMT + - Wed, 18 Oct 2023 16:45:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1659,7 +1793,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4aefa926-bf8f-4268-a793-d95b49200096 + - e6c64c28-085f-46ab-801b-b6c743813833 status: 200 OK code: 200 duration: "" @@ -1670,19 +1804,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:41 GMT + - Wed, 18 Oct 2023 16:45:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1692,7 +1826,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 688a6a75-8cda-4f5e-88ba-afea97ecfa86 + - da19e5fe-c1b9-46c8-9249-d318b58229e5 status: 200 OK code: 200 duration: "" @@ -1703,19 +1837,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:46 GMT + - Wed, 18 Oct 2023 16:45:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1725,7 +1859,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77e6d5fe-1f21-46b7-b3d2-6d2fcb859911 + - b895fb2d-ee40-4855-9093-4273cd8fa98e status: 200 OK code: 200 duration: "" @@ -1736,19 +1870,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:51 GMT + - Wed, 18 Oct 2023 16:45:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1758,7 +1892,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a09124f7-03f2-420e-8cd8-9a91d74316ca + - f69d601c-a372-43d0-b354-8e0e5cd732df status: 200 OK code: 200 duration: "" @@ -1769,19 +1903,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:17:56 GMT + - Wed, 18 Oct 2023 16:45:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1791,7 +1925,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24095171-0120-47f3-9384-60df42f784f4 + - 9194d5eb-e854-419c-b5e5-7bba82e62a6b status: 200 OK code: 200 duration: "" @@ -1802,19 +1936,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:01 GMT + - Wed, 18 Oct 2023 16:45:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1824,7 +1958,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a10b8fa-bef1-47ac-9926-5949ed3ed08f + - cc7bc716-8abd-49b9-abb5-61e04e4f50e0 status: 200 OK code: 200 duration: "" @@ -1835,19 +1969,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:06 GMT + - Wed, 18 Oct 2023 16:45:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1857,7 +1991,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 945aa2ae-6a30-4b11-8a8b-d705c395db71 + - 89c5ec20-b571-42c6-be6f-df39acbdc196 status: 200 OK code: 200 duration: "" @@ -1868,19 +2002,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:11 GMT + - Wed, 18 Oct 2023 16:45:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1890,7 +2024,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef3d6e7a-46e9-4b9e-9583-9f889b101654 + - fe35ae60-f2b1-43c9-9883-52a0443f5dfc status: 200 OK code: 200 duration: "" @@ -1901,19 +2035,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:17 GMT + - Wed, 18 Oct 2023 16:45:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1923,7 +2057,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b4886c1-fb84-4926-ba01-d4a883967ff2 + - ce5bed5a-21b3-4d70-8234-6c3186785feb status: 200 OK code: 200 duration: "" @@ -1934,19 +2068,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:22 GMT + - Wed, 18 Oct 2023 16:45:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1956,7 +2090,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77130dcb-a1ab-4aed-a003-a349499d18a4 + - f20b3649-dcea-4fbf-af3f-e7d4979a1a22 status: 200 OK code: 200 duration: "" @@ -1967,19 +2101,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:27 GMT + - Wed, 18 Oct 2023 16:46:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1989,7 +2123,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef1f4e83-3fb1-457a-beb4-8b83a9ff7513 + - 3d9e74d7-db42-4fb0-81bc-898edf279804 status: 200 OK code: 200 duration: "" @@ -2000,19 +2134,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:32 GMT + - Wed, 18 Oct 2023 16:46:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2022,7 +2156,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be3aa08c-97c9-40c2-9556-866b52f2af83 + - b4b20c5f-c14c-404a-a41e-570e32d825a6 status: 200 OK code: 200 duration: "" @@ -2033,19 +2167,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:37 GMT + - Wed, 18 Oct 2023 16:46:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2055,7 +2189,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1eaebd52-fead-4dd1-ac0b-a4b4381219b2 + - ae20fe53-cb4e-46e3-b83d-94ece8524f8e status: 200 OK code: 200 duration: "" @@ -2066,19 +2200,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:45:16.644908Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:42 GMT + - Wed, 18 Oct 2023 16:46:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2088,7 +2222,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81a508db-246b-495b-a58c-47181a0a1ea5 + - 8e6afc39-5933-4e76-a286-03e9d4829e04 status: 200 OK code: 200 duration: "" @@ -2099,19 +2233,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:21.537514Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:47 GMT + - Wed, 18 Oct 2023 16:46:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2121,7 +2255,42 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b92ef5eb-779c-4e33-ab33-d2cef87264bb + - 63a675ee-0275-4cd9-ad3a-98271ab9b541 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":null,"description":null,"tags":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":null,"maintenance_window":null},"feature_gates":null,"admission_plugins":null,"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null},"apiserver_cert_sans":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 + method: PATCH + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176032588Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1519" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:46:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8d421a9-23a5-40ab-bcc8-7573b0842c20 status: 200 OK code: 200 duration: "" @@ -2132,19 +2301,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176033Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:52 GMT + - Wed, 18 Oct 2023 16:46:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2154,7 +2323,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2bcf19b-9568-4672-af02-7f9290f2ce10 + - 488b0539-8bb1-480b-a3f2-10722d938548 status: 200 OK code: 200 duration: "" @@ -2165,19 +2334,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:17:41.557502Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176033Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:18:57 GMT + - Wed, 18 Oct 2023 16:46:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2187,7 +2356,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a0a939a-9593-44b6-b201-2828b5edd0ce + - 242dd8e8-5b70-4ebb-9ac3-8660cdb3aa4a status: 200 OK code: 200 duration: "" @@ -2198,19 +2367,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:01.531484Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176033Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:02 GMT + - Wed, 18 Oct 2023 16:46:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2220,32 +2389,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f273bc74-c45e-4380-a29a-a7b13b288689 + - d4397770-13bc-4e12-9b96-d8f2eba9e548 status: 200 OK code: 200 duration: "" - request: - body: '{"name":null,"description":null,"tags":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":null,"maintenance_window":null},"feature_gates":null,"admission_plugins":null,"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null},"apiserver_cert_sans":null}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176033Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Oct 2023 16:46:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 36a62052-3ebd-4030-8587-6c89c0ab475b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 - method: PATCH + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:02.509207982Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176033Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1440" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:02 GMT + - Wed, 18 Oct 2023 16:46:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2255,7 +2455,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 059e3ae2-1e1f-4085-9415-3154a928ab90 + - 4d17fccb-cf35-436f-8034-65dc1d98054c status: 200 OK code: 200 duration: "" @@ -2266,19 +2466,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:02.509208Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176033Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:02 GMT + - Wed, 18 Oct 2023 16:46:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2288,7 +2488,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2b5560b-e8d3-4be0-a07d-6aa1b958125b + - e17eb57c-a1d3-41d3-bc71-5bb9cfc65316 status: 200 OK code: 200 duration: "" @@ -2299,19 +2499,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:02.509208Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176033Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:07 GMT + - Wed, 18 Oct 2023 16:46:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2321,7 +2521,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5aea00e-71f7-4d01-a538-aa1a12b12620 + - 4578f640-12e5-40ae-9fed-d8e97545682b status: 200 OK code: 200 duration: "" @@ -2332,19 +2532,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:02.509208Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176033Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:12 GMT + - Wed, 18 Oct 2023 16:46:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2354,7 +2554,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca98e964-0317-4f45-8141-82af2f10a295 + - d1dde997-948a-4525-bddc-c96f095fa52e status: 200 OK code: 200 duration: "" @@ -2365,19 +2565,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:02.509208Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176033Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:17 GMT + - Wed, 18 Oct 2023 16:47:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2387,7 +2587,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9636e25-5806-470f-8f68-30b5a6e2a4be + - 498ffba0-afc3-43f2-8e96-357e7f801046 status: 200 OK code: 200 duration: "" @@ -2398,19 +2598,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:02.509208Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176033Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:22 GMT + - Wed, 18 Oct 2023 16:47:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2420,7 +2620,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f7ba228-2a18-4a01-93dc-896e50f61d7a + - a451546e-13e4-479a-b783-0e834389145c status: 200 OK code: 200 duration: "" @@ -2431,19 +2631,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:02.509208Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:46:23.176033Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:27 GMT + - Wed, 18 Oct 2023 16:47:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2453,7 +2653,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81c10431-e07e-4ccf-8ea1-fa20799be4e9 + - 150a914e-4396-4159-82eb-cea3e7f8d7ea status: 200 OK code: 200 duration: "" @@ -2464,19 +2664,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:02.509208Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:47:18.352539Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:32 GMT + - Wed, 18 Oct 2023 16:47:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2486,7 +2686,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d71ec24-88a2-4116-bc20-9a39e5fdee56 + - 1ab00fcd-451d-4603-a530-20e41eec4c58 status: 200 OK code: 200 duration: "" @@ -2497,19 +2697,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:02.509208Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:47:18.352539Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:37 GMT + - Wed, 18 Oct 2023 16:47:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2519,7 +2719,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80c71041-9a02-452c-9cae-65600889782d + - ea44bb10-eef4-4089-aeea-8bdcca900685 status: 200 OK code: 200 duration: "" @@ -2530,19 +2730,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:39.897284Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JOZWs0eGIxaEVWRTE2VFZSQmVFNTZSVEpPUkUxNlRqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNkckNsSTFSRGR4UjBvelkyVm1OMWR6VmxGM1RXSmxVMll3ZHpaVE0yOWFUSGhaTkZOSllVazBZMGhaY214aFFrUkNMMUExVWxOVU9TOVhaVlZaVFN0NVRsb0tNM1JUVmpOcFIydFBZWHBWTTA5TGJ6bHZRM0JyVnpneE5HdHVUamswUzJsM1kyTmlibEo1VVV4cFFXVkdRV2hIU0dOYU1FUlpOek5VUld4TlVVdENNZ3BTWjBkck5XTlRkVlZFY2pCa05rVlliRkU0YTNCU01XYzNTaXRIUm5VM1EydFlZVkZuZG5wcE5WTlRlVVE0U2taWGF6RnZabVU0UTJsTU1sVTRWMVEwQ2tRelMzRTNTVXN4Ynk4dlNGbExTalJDWlROa1dWa3lUV054U0d0cFRIQmlRbE5STkZoVmVqUjRVMUV4WmtSNVRuaHdSbkZ4ZUdaeFNraDNTelZZVGs4S2RqSlVTRkJoTXk5dWJEbHBRMk5ITjFCcFIwdDRORll5TlRFeVVGVlBiRkp3VlZacmQzTXdhMmcwWTFONWFFNXRRVkZHT1RRcllWUm1SRVI0WkdaQ2N3b3ZkV2hhTkVWNFNHZGhOemMyUkVNeFVrYzRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaV3B6UzJkVVIwWllhblppZHpFNVJXdDRTREZoWlM5RWNrRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRTRTV5VUZKVWJqazJkM1ZvWlhKTFNXVmlUbnB4Ym1adlRtMW9iMkphZGxKNmRYcEVTRmhvWVRSdU5GbGFVMHhoVEFvM1RpOXpZbnBvZWpscFpYaHhObU53Y21WVmR6ZzFlRkU0TDJObldrRnVTSFpYV1VSRlRqaDNPVFpPZGk4MldIWjZOMXBZVUZvck5FcDJjbk5QU21SUENtSlRWbEYzWldOS2IwaHZZWEF3WjBGcWFHdDRZUzlLYlVoME0za3hObGhpV1dkVE0xaFdaWFEwWWl0R2IySlVXVGx5Tkc5aGNtdGFUMlF6VUZjNFoxY0tZa1U1UWtoYVNIUkJaM0kzUWpaSVpUVlBlazVFZWtWNGFuVlNVV04xV2pOSE5rNVNTRmgwVGxFeFFYUkdPR2RrVEdaR04zRkNNMVZCV0daTFJrWlRWd280YjBZeGVYaERTa3RIUzI0eWVuYzVaSFpGV1ZkWGExUmpPR3RFV1ZRdlkwOXRaakZWUm01MU0yaFRVelJpT0VScFR6QjJlRGhFYVdsQk4xRXlVRzVwQ25aeFltVjZTMDF2U1RKeFEyaENjbFJxTkRSWVVHSkNOalZ5WVdKME9YTnBiVk15THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2JlNGFkMzI3LWU0Y2QtNDc2ZS1iMzdkLWUzMmUwMjA4NTAxNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpZDJQcjRSbUNOY3hUd0ZKWE9BQXZ0QnRUWUFNanNxRm83T3ZoRGRTekVGWXhxNkRTZFlqbFY3MA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1434" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:42 GMT + - Wed, 18 Oct 2023 16:47:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2552,7 +2752,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ffbc010-ac39-4c32-b0fb-2db6ed4cde7f + - dad24f1d-72fa-413b-ad5e-b38d15ebb0f9 status: 200 OK code: 200 duration: "" @@ -2563,19 +2763,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:39.897284Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:47:18.352539Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:43 GMT + - Wed, 18 Oct 2023 16:47:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2585,7 +2785,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3888b9d3-fabf-40e3-9b4c-1c6c4f7fd430 + - f262474a-9fec-43ef-8bc3-eac7314ef835 status: 200 OK code: 200 duration: "" @@ -2596,19 +2796,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e119ab2a-cb88-4b75-b93d-94e1eabcf342 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzBrMkNrWmhRME12TmtVeGNYQm9aVlZWWW5kSFRqaEVRVk5sUkhWa2ExVTBaR2MyTXpFeU5GTnZkRWt5TTAxV2FWSnJha3hsTnpCbVNqQjNWa1pzZWpKVk9WVUtaa2t5UlV3eWFUSjBXa1J5UjFaRVl5c3lNR0ZhU0c0eFJWUjVjVlpNYWtncllreHdVVlpCTUhab1FsTkRUVzkxUTJKUk0zVjZPU3M1VVdOVlJWaDVlQW92U0VSV2FXNXpibGwzTW5GRFZrWkRTbkpQUkM5TFNrUnhjRVJqUkVKc1QyNUVVVXBVTjJaUVRGaHZTRVZ6WTJKamRYbEtPVFZxSzNSaVlYQkJOMnc0Q21OeVNFdFZRbkIwUWprMFZuRXhaVGRLVkRsaVJEUnZaalppZWpadFltbFVWbnBrTWpKaGVUSnpXa294TVU1Q2VIQm5NRkExUXpsa1JubGFiRFpFVW1zS09VTjRSelJOVUhobWJVUlJTR1J3WXpFMFJtdFlUMU14VEVKUk1tRjNTMVJhTlVGeFIxbHlkV1FyTnpOd1MySTRWRE5oVEhReWJqazJaVmR5ZWk5d1pBcG5NMWRZWTFveU9FMVdOVTQ1TURkWVMyMHdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZiRmhsVGtoUk1tTlFWazB5V0RSTE9XdEhhMWQyUWpWcE5HZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJTVWRzUlZsS1RqSnhaMFptWVhkbWJGaEljQzh5Ulc1SFJYVnZTa2wxTkVaWFFtVlJXQ3MxVG5oVGFYRlVkRFZ6YlFweVZVRlpVa0ZSWWt4b01WWnpWa05yZWt0Qk5GVmpTM1pYY0RoSk9XMW9kalZNUlRKaVNIaDJRbTlvY2tndldWcHFUVXQxVUZBNFkxazJNWEJHUm5GS0NtaExSREpXUVRKd2MzZGpjMGRzWTBSd1psVkRMM05GYURGa1VVTmFSR2t6YjFScFpEUnFORlZEYVZCdlFUa3dTMms1ZW1rMGQyUnFXWGd4V1VkeUt6UUtaM1IxU2xFNFFrTXJaRUo0VkhoVllrRm5VR0pCVjB0NFVuTk9SREpIVFVkRloxZFhXVmhJVVV4elFrcEhLM2hDVDFSc01pOU9TM1Z6SzNKRFZYVTVjUW96WWtOak5tdzFhbWNyYlRaQ1JHcFZLelk1Y0RaemFWUXJPVU5VV1c1MmIybGtVM0IzVG5aRkswTndhbnBVZFRsSlN6RjNOMXBCUzFSU1YyVTNSMWd6Q2xKUFMxaERUMk5vVTFwRFVEUnFXWFpwYUdKb01HY3llamwzZURoTGEzSnRSRlZyVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2RkMGY1MWYwLTEzODItNGFkNy04YTY0LWEyYmU0N2FlYTUxNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSc1JieWhMc0FnY2RlbmY4eFRZc1MxWjAzdlN2bkh0TXE5TWZwcmZBUkphcHltWlc2TnNNRUNrZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:43:35.686906Z","dhcp_enabled":true,"id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:35.686906Z","id":"6e957e34-653e-4fed-ad63-38ba4eb78285","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:43:35.686906Z"},{"created_at":"2023-10-18T16:43:35.686906Z","id":"975a8ca4-bf73-442f-8fed-25cd29f6029e","subnet":"fd63:256c:45f7:91b4::/64","updated_at":"2023-10-18T16:43:35.686906Z"}],"tags":[],"updated_at":"2023-10-18T16:43:35.686906Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2620" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:43 GMT + - Wed, 18 Oct 2023 16:47:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2618,7 +2818,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 232f91e8-aeb1-4c5b-8475-b09faf0379a6 + - b618e448-050d-4cb8-8b52-638ef9f280c9 status: 200 OK code: 200 duration: "" @@ -2629,19 +2829,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:39.897284Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:47:18.352539Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:43 GMT + - Wed, 18 Oct 2023 16:47:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2651,7 +2851,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e502bd2-17fb-4a57-88f3-e0156d8f2a57 + - 0e2df4b6-38ab-4685-b4df-e42920fdbac8 status: 200 OK code: 200 duration: "" @@ -2662,19 +2862,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:39.897284Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JOZWs0eGIxaEVWRTE2VFZSQmVFNTZSVEpPUkUxNlRqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNkckNsSTFSRGR4UjBvelkyVm1OMWR6VmxGM1RXSmxVMll3ZHpaVE0yOWFUSGhaTkZOSllVazBZMGhaY214aFFrUkNMMUExVWxOVU9TOVhaVlZaVFN0NVRsb0tNM1JUVmpOcFIydFBZWHBWTTA5TGJ6bHZRM0JyVnpneE5HdHVUamswUzJsM1kyTmlibEo1VVV4cFFXVkdRV2hIU0dOYU1FUlpOek5VUld4TlVVdENNZ3BTWjBkck5XTlRkVlZFY2pCa05rVlliRkU0YTNCU01XYzNTaXRIUm5VM1EydFlZVkZuZG5wcE5WTlRlVVE0U2taWGF6RnZabVU0UTJsTU1sVTRWMVEwQ2tRelMzRTNTVXN4Ynk4dlNGbExTalJDWlROa1dWa3lUV054U0d0cFRIQmlRbE5STkZoVmVqUjRVMUV4WmtSNVRuaHdSbkZ4ZUdaeFNraDNTelZZVGs4S2RqSlVTRkJoTXk5dWJEbHBRMk5ITjFCcFIwdDRORll5TlRFeVVGVlBiRkp3VlZacmQzTXdhMmcwWTFONWFFNXRRVkZHT1RRcllWUm1SRVI0WkdaQ2N3b3ZkV2hhTkVWNFNHZGhOemMyUkVNeFVrYzRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaV3B6UzJkVVIwWllhblppZHpFNVJXdDRTREZoWlM5RWNrRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRTRTV5VUZKVWJqazJkM1ZvWlhKTFNXVmlUbnB4Ym1adlRtMW9iMkphZGxKNmRYcEVTRmhvWVRSdU5GbGFVMHhoVEFvM1RpOXpZbnBvZWpscFpYaHhObU53Y21WVmR6ZzFlRkU0TDJObldrRnVTSFpYV1VSRlRqaDNPVFpPZGk4MldIWjZOMXBZVUZvck5FcDJjbk5QU21SUENtSlRWbEYzWldOS2IwaHZZWEF3WjBGcWFHdDRZUzlLYlVoME0za3hObGhpV1dkVE0xaFdaWFEwWWl0R2IySlVXVGx5Tkc5aGNtdGFUMlF6VUZjNFoxY0tZa1U1UWtoYVNIUkJaM0kzUWpaSVpUVlBlazVFZWtWNGFuVlNVV04xV2pOSE5rNVNTRmgwVGxFeFFYUkdPR2RrVEdaR04zRkNNMVZCV0daTFJrWlRWd280YjBZeGVYaERTa3RIUzI0eWVuYzVaSFpGV1ZkWGExUmpPR3RFV1ZRdlkwOXRaakZWUm01MU0yaFRVelJpT0VScFR6QjJlRGhFYVdsQk4xRXlVRzVwQ25aeFltVjZTMDF2U1RKeFEyaENjbFJxTkRSWVVHSkNOalZ5WVdKME9YTnBiVk15THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2JlNGFkMzI3LWU0Y2QtNDc2ZS1iMzdkLWUzMmUwMjA4NTAxNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpZDJQcjRSbUNOY3hUd0ZKWE9BQXZ0QnRUWUFNanNxRm83T3ZoRGRTekVGWXhxNkRTZFlqbFY3MA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1434" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:43 GMT + - Wed, 18 Oct 2023 16:47:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2684,7 +2884,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6eb297cd-f3bd-4c08-b5bc-a2854185abe2 + - 3ddb389f-12ed-4beb-be97-eb4166e26e3f status: 200 OK code: 200 duration: "" @@ -2695,19 +2895,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e119ab2a-cb88-4b75-b93d-94e1eabcf342 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzBrMkNrWmhRME12TmtVeGNYQm9aVlZWWW5kSFRqaEVRVk5sUkhWa2ExVTBaR2MyTXpFeU5GTnZkRWt5TTAxV2FWSnJha3hsTnpCbVNqQjNWa1pzZWpKVk9WVUtaa2t5UlV3eWFUSjBXa1J5UjFaRVl5c3lNR0ZhU0c0eFJWUjVjVlpNYWtncllreHdVVlpCTUhab1FsTkRUVzkxUTJKUk0zVjZPU3M1VVdOVlJWaDVlQW92U0VSV2FXNXpibGwzTW5GRFZrWkRTbkpQUkM5TFNrUnhjRVJqUkVKc1QyNUVVVXBVTjJaUVRGaHZTRVZ6WTJKamRYbEtPVFZxSzNSaVlYQkJOMnc0Q21OeVNFdFZRbkIwUWprMFZuRXhaVGRLVkRsaVJEUnZaalppZWpadFltbFVWbnBrTWpKaGVUSnpXa294TVU1Q2VIQm5NRkExUXpsa1JubGFiRFpFVW1zS09VTjRSelJOVUhobWJVUlJTR1J3WXpFMFJtdFlUMU14VEVKUk1tRjNTMVJhTlVGeFIxbHlkV1FyTnpOd1MySTRWRE5oVEhReWJqazJaVmR5ZWk5d1pBcG5NMWRZWTFveU9FMVdOVTQ1TURkWVMyMHdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZiRmhsVGtoUk1tTlFWazB5V0RSTE9XdEhhMWQyUWpWcE5HZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJTVWRzUlZsS1RqSnhaMFptWVhkbWJGaEljQzh5Ulc1SFJYVnZTa2wxTkVaWFFtVlJXQ3MxVG5oVGFYRlVkRFZ6YlFweVZVRlpVa0ZSWWt4b01WWnpWa05yZWt0Qk5GVmpTM1pYY0RoSk9XMW9kalZNUlRKaVNIaDJRbTlvY2tndldWcHFUVXQxVUZBNFkxazJNWEJHUm5GS0NtaExSREpXUVRKd2MzZGpjMGRzWTBSd1psVkRMM05GYURGa1VVTmFSR2t6YjFScFpEUnFORlZEYVZCdlFUa3dTMms1ZW1rMGQyUnFXWGd4V1VkeUt6UUtaM1IxU2xFNFFrTXJaRUo0VkhoVllrRm5VR0pCVjB0NFVuTk9SREpIVFVkRloxZFhXVmhJVVV4elFrcEhLM2hDVDFSc01pOU9TM1Z6SzNKRFZYVTVjUW96WWtOak5tdzFhbWNyYlRaQ1JHcFZLelk1Y0RaemFWUXJPVU5VV1c1MmIybGtVM0IzVG5aRkswTndhbnBVZFRsSlN6RjNOMXBCUzFSU1YyVTNSMWd6Q2xKUFMxaERUMk5vVTFwRFVEUnFXWFpwYUdKb01HY3llamwzZURoTGEzSnRSRlZyVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2RkMGY1MWYwLTEzODItNGFkNy04YTY0LWEyYmU0N2FlYTUxNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSc1JieWhMc0FnY2RlbmY4eFRZc1MxWjAzdlN2bkh0TXE5TWZwcmZBUkphcHltWlc2TnNNRUNrZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:43:35.686906Z","dhcp_enabled":true,"id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:35.686906Z","id":"6e957e34-653e-4fed-ad63-38ba4eb78285","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:43:35.686906Z"},{"created_at":"2023-10-18T16:43:35.686906Z","id":"975a8ca4-bf73-442f-8fed-25cd29f6029e","subnet":"fd63:256c:45f7:91b4::/64","updated_at":"2023-10-18T16:43:35.686906Z"}],"tags":[],"updated_at":"2023-10-18T16:43:35.686906Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2620" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:43 GMT + - Wed, 18 Oct 2023 16:47:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2717,7 +2917,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83d9d864-343e-4634-a15e-fbea0815417e + - 263d5d1b-941e-4dae-896d-ae96a7ea7b02 status: 200 OK code: 200 duration: "" @@ -2728,19 +2928,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:39.897284Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:47:18.352539Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1513" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:43 GMT + - Wed, 18 Oct 2023 16:47:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2750,7 +2950,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9278bcd-f2df-436e-b245-9c49cb1de298 + - f26ea807-afd1-4672-8257-a851a9897975 status: 200 OK code: 200 duration: "" @@ -2761,19 +2961,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJWTVU5V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkZVeFQxWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzBrMkNrWmhRME12TmtVeGNYQm9aVlZWWW5kSFRqaEVRVk5sUkhWa2ExVTBaR2MyTXpFeU5GTnZkRWt5TTAxV2FWSnJha3hsTnpCbVNqQjNWa1pzZWpKVk9WVUtaa2t5UlV3eWFUSjBXa1J5UjFaRVl5c3lNR0ZhU0c0eFJWUjVjVlpNYWtncllreHdVVlpCTUhab1FsTkRUVzkxUTJKUk0zVjZPU3M1VVdOVlJWaDVlQW92U0VSV2FXNXpibGwzTW5GRFZrWkRTbkpQUkM5TFNrUnhjRVJqUkVKc1QyNUVVVXBVTjJaUVRGaHZTRVZ6WTJKamRYbEtPVFZxSzNSaVlYQkJOMnc0Q21OeVNFdFZRbkIwUWprMFZuRXhaVGRLVkRsaVJEUnZaalppZWpadFltbFVWbnBrTWpKaGVUSnpXa294TVU1Q2VIQm5NRkExUXpsa1JubGFiRFpFVW1zS09VTjRSelJOVUhobWJVUlJTR1J3WXpFMFJtdFlUMU14VEVKUk1tRjNTMVJhTlVGeFIxbHlkV1FyTnpOd1MySTRWRE5oVEhReWJqazJaVmR5ZWk5d1pBcG5NMWRZWTFveU9FMVdOVTQ1TURkWVMyMHdRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZiRmhsVGtoUk1tTlFWazB5V0RSTE9XdEhhMWQyUWpWcE5HZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJTVWRzUlZsS1RqSnhaMFptWVhkbWJGaEljQzh5Ulc1SFJYVnZTa2wxTkVaWFFtVlJXQ3MxVG5oVGFYRlVkRFZ6YlFweVZVRlpVa0ZSWWt4b01WWnpWa05yZWt0Qk5GVmpTM1pYY0RoSk9XMW9kalZNUlRKaVNIaDJRbTlvY2tndldWcHFUVXQxVUZBNFkxazJNWEJHUm5GS0NtaExSREpXUVRKd2MzZGpjMGRzWTBSd1psVkRMM05GYURGa1VVTmFSR2t6YjFScFpEUnFORlZEYVZCdlFUa3dTMms1ZW1rMGQyUnFXWGd4V1VkeUt6UUtaM1IxU2xFNFFrTXJaRUo0VkhoVllrRm5VR0pCVjB0NFVuTk9SREpIVFVkRloxZFhXVmhJVVV4elFrcEhLM2hDVDFSc01pOU9TM1Z6SzNKRFZYVTVjUW96WWtOak5tdzFhbWNyYlRaQ1JHcFZLelk1Y0RaemFWUXJPVU5VV1c1MmIybGtVM0IzVG5aRkswTndhbnBVZFRsSlN6RjNOMXBCUzFSU1YyVTNSMWd6Q2xKUFMxaERUMk5vVTFwRFVEUnFXWFpwYUdKb01HY3llamwzZURoTGEzSnRSRlZyVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2RkMGY1MWYwLTEzODItNGFkNy04YTY0LWEyYmU0N2FlYTUxNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBSc1JieWhMc0FnY2RlbmY4eFRZc1MxWjAzdlN2bkh0TXE5TWZwcmZBUkphcHltWlc2TnNNRUNrZw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JOZWs0eGIxaEVWRTE2VFZSQmVFNTZSVEpPUkUxNlRqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCUzNkckNsSTFSRGR4UjBvelkyVm1OMWR6VmxGM1RXSmxVMll3ZHpaVE0yOWFUSGhaTkZOSllVazBZMGhaY214aFFrUkNMMUExVWxOVU9TOVhaVlZaVFN0NVRsb0tNM1JUVmpOcFIydFBZWHBWTTA5TGJ6bHZRM0JyVnpneE5HdHVUamswUzJsM1kyTmlibEo1VVV4cFFXVkdRV2hIU0dOYU1FUlpOek5VUld4TlVVdENNZ3BTWjBkck5XTlRkVlZFY2pCa05rVlliRkU0YTNCU01XYzNTaXRIUm5VM1EydFlZVkZuZG5wcE5WTlRlVVE0U2taWGF6RnZabVU0UTJsTU1sVTRWMVEwQ2tRelMzRTNTVXN4Ynk4dlNGbExTalJDWlROa1dWa3lUV054U0d0cFRIQmlRbE5STkZoVmVqUjRVMUV4WmtSNVRuaHdSbkZ4ZUdaeFNraDNTelZZVGs4S2RqSlVTRkJoTXk5dWJEbHBRMk5ITjFCcFIwdDRORll5TlRFeVVGVlBiRkp3VlZacmQzTXdhMmcwWTFONWFFNXRRVkZHT1RRcllWUm1SRVI0WkdaQ2N3b3ZkV2hhTkVWNFNHZGhOemMyUkVNeFVrYzRRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkVaV3B6UzJkVVIwWllhblppZHpFNVJXdDRTREZoWlM5RWNrRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRTRTV5VUZKVWJqazJkM1ZvWlhKTFNXVmlUbnB4Ym1adlRtMW9iMkphZGxKNmRYcEVTRmhvWVRSdU5GbGFVMHhoVEFvM1RpOXpZbnBvZWpscFpYaHhObU53Y21WVmR6ZzFlRkU0TDJObldrRnVTSFpYV1VSRlRqaDNPVFpPZGk4MldIWjZOMXBZVUZvck5FcDJjbk5QU21SUENtSlRWbEYzWldOS2IwaHZZWEF3WjBGcWFHdDRZUzlLYlVoME0za3hObGhpV1dkVE0xaFdaWFEwWWl0R2IySlVXVGx5Tkc5aGNtdGFUMlF6VUZjNFoxY0tZa1U1UWtoYVNIUkJaM0kzUWpaSVpUVlBlazVFZWtWNGFuVlNVV04xV2pOSE5rNVNTRmgwVGxFeFFYUkdPR2RrVEdaR04zRkNNMVZCV0daTFJrWlRWd280YjBZeGVYaERTa3RIUzI0eWVuYzVaSFpGV1ZkWGExUmpPR3RFV1ZRdlkwOXRaakZWUm01MU0yaFRVelJpT0VScFR6QjJlRGhFYVdsQk4xRXlVRzVwQ25aeFltVjZTMDF2U1RKeFEyaENjbFJxTkRSWVVHSkNOalZ5WVdKME9YTnBiVk15THdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2JlNGFkMzI3LWU0Y2QtNDc2ZS1iMzdkLWUzMmUwMjA4NTAxNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBpZDJQcjRSbUNOY3hUd0ZKWE9BQXZ0QnRUWUFNanNxRm83T3ZoRGRTekVGWXhxNkRTZFlqbFY3MA==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2620" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:43 GMT + - Wed, 18 Oct 2023 16:47:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2783,7 +2983,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dce4badb-84ef-4290-ba91-371c2ced2fb2 + - 416464bc-2e04-42b2-9669-8e540f3aa866 status: 200 OK code: 200 duration: "" @@ -2794,19 +2994,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/available-types method: GET response: body: '{"cluster_types":[],"total_count":0}' headers: Content-Length: - - "36" + - "37" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:43 GMT + - Wed, 18 Oct 2023 16:47:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2816,7 +3016,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25c7e6cf-890b-4d2c-8925-9d4158a3b0bf + - eb393e36-88e2-47b8-8a55-55763b25c5db status: 200 OK code: 200 duration: "" @@ -2827,19 +3027,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014/available-types method: GET response: body: '{"cluster_types":[],"total_count":0}' headers: Content-Length: - - "36" + - "37" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:43 GMT + - Wed, 18 Oct 2023 16:47:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2849,7 +3049,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93e1bd0b-c525-4d4e-9fd8-b90626e78787 + - 173391d9-80bb-4b6b-ab8b-5346adc2a8a8 status: 200 OK code: 200 duration: "" @@ -2860,19 +3060,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014?with_additional_resources=false method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:44.113267809Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:47:21.000641494Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1440" + - "1519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:44 GMT + - Wed, 18 Oct 2023 16:47:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2882,7 +3082,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03c17dad-5f6b-45d7-b2c8-c80634f7e7ad + - c0f13616-a133-4474-9a0a-2195dcd4252c status: 200 OK code: 200 duration: "" @@ -2893,19 +3093,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:44.113268Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:47:21.000641Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:44 GMT + - Wed, 18 Oct 2023 16:47:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2915,7 +3115,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5feda955-d43a-422c-a30e-023fe2278f1d + - 9d1d7c95-b501-4a8c-827b-fc0bbe32e5ba status: 200 OK code: 200 duration: "" @@ -2926,19 +3126,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dd0f51f0-1382-4ad7-8a64-a2be47aea516.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:17:41.465963Z","created_at":"2023-09-01T16:15:56.808456Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dd0f51f0-1382-4ad7-8a64-a2be47aea516.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-09-01T16:19:44.113268Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://be4ad327-e4cd-476e-b37d-e32e02085014.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:45:16.553441Z","created_at":"2023-10-18T16:43:36.596073Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.be4ad327-e4cd-476e-b37d-e32e02085014.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"be4ad327-e4cd-476e-b37d-e32e02085014","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-16","updated_at":"2023-10-18T16:47:21.000641Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1516" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:49 GMT + - Wed, 18 Oct 2023 16:47:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2948,7 +3148,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a95d74e-ce3b-442f-983d-f26b969dbffb + - 55aa0464-9f33-4236-a9ee-e8eeb267f5d4 status: 200 OK code: 200 duration: "" @@ -2959,10 +3159,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dd0f51f0-1382-4ad7-8a64-a2be47aea516 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/be4ad327-e4cd-476e-b37d-e32e02085014 method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"dd0f51f0-1382-4ad7-8a64-a2be47aea516","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"be4ad327-e4cd-476e-b37d-e32e02085014","type":"not_found"}' headers: Content-Length: - "128" @@ -2971,7 +3171,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:54 GMT + - Wed, 18 Oct 2023 16:47:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2981,12 +3181,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - befa51ec-799c-47b3-b619-ebdf6f188217 + - 85a261d0-bb51-4bc5-9b9a-42931c8ade13 status: 404 Not Found code: 404 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"kapsule-dedicated-8","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.0","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"kapsule-dedicated-8","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342"}' form: {} headers: Content-Type: @@ -2997,16 +3197,16 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483426Z","created_at":"2023-09-01T16:19:54.380483426Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273092Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574105Z","created_at":"2023-10-18T16:47:31.489574105Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504260600Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1445" + - "1524" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:54 GMT + - Wed, 18 Oct 2023 16:47:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3016,7 +3216,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1490799-b07c-40cd-b9b2-f69d28ff9826 + - cbc9b68e-c041-44fc-aff5-12473e09e480 status: 200 OK code: 200 duration: "" @@ -3027,19 +3227,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:54 GMT + - Wed, 18 Oct 2023 16:47:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3049,7 +3249,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81a282b4-d69a-4f80-b8b1-b0c78131d93f + - 36cebf58-872e-4a70-8575-970d709c99cf status: 200 OK code: 200 duration: "" @@ -3060,19 +3260,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:19:59 GMT + - Wed, 18 Oct 2023 16:47:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3082,7 +3282,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d133b03-1ece-4a9a-bea1-428fba615f66 + - fa3680c2-61e9-447e-b6f1-45d919e9df84 status: 200 OK code: 200 duration: "" @@ -3093,19 +3293,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:04 GMT + - Wed, 18 Oct 2023 16:47:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3115,7 +3315,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd32264b-5c02-4c47-be7c-858741bb45c6 + - 8e60bf42-1fb8-440b-9c92-e486fe02491a status: 200 OK code: 200 duration: "" @@ -3126,19 +3326,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:09 GMT + - Wed, 18 Oct 2023 16:47:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3148,7 +3348,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e73a160f-0550-4dc1-8a15-69fd87d498bf + - f13d4f29-52b3-4ce2-9366-a7feccf5a6e4 status: 200 OK code: 200 duration: "" @@ -3159,19 +3359,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:14 GMT + - Wed, 18 Oct 2023 16:47:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3181,7 +3381,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54585c28-93de-4ff1-8cb3-9d885188e25e + - 2e53b88f-1e23-4cfc-857a-430532c6ea57 status: 200 OK code: 200 duration: "" @@ -3192,19 +3392,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:19 GMT + - Wed, 18 Oct 2023 16:47:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3214,7 +3414,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8d4ed7e-04b8-42a7-abb2-934f2e3b4a7e + - 6e3c9262-ce13-45eb-b6c0-06af80ebbb0c status: 200 OK code: 200 duration: "" @@ -3225,19 +3425,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:24 GMT + - Wed, 18 Oct 2023 16:48:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3247,7 +3447,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 974979b6-6ec0-4ddf-9664-0e7a20a7fe21 + - 931363a6-567d-4576-a69c-cef669bf5158 status: 200 OK code: 200 duration: "" @@ -3258,19 +3458,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:29 GMT + - Wed, 18 Oct 2023 16:48:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3280,7 +3480,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c0a6e6c-16d6-41c2-b8d1-7f9793f4cee8 + - 2b31061f-ef46-41ba-bfb4-8e8407e9189e status: 200 OK code: 200 duration: "" @@ -3291,19 +3491,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:34 GMT + - Wed, 18 Oct 2023 16:48:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3313,7 +3513,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17cdac17-1f02-498d-8cd2-5c204a427697 + - d7ccbb9d-d92b-4984-8345-32e4c781b74e status: 200 OK code: 200 duration: "" @@ -3324,19 +3524,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:39 GMT + - Wed, 18 Oct 2023 16:48:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3346,7 +3546,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9325a9a-b007-4f88-aaab-d3561cb5758e + - 1527c37c-ca97-4613-8793-87987fb3c67a status: 200 OK code: 200 duration: "" @@ -3357,19 +3557,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:44 GMT + - Wed, 18 Oct 2023 16:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3379,7 +3579,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbf984d5-f46c-4013-8e6e-52dc8bacb8dc + - c38fbc62-4464-4be0-958b-b6a2701b366d status: 200 OK code: 200 duration: "" @@ -3390,19 +3590,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:50 GMT + - Wed, 18 Oct 2023 16:48:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3412,7 +3612,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e3cd869-411d-4c03-8fa9-c643acec02cd + - ed5f51dc-4ffe-4ab6-adf4-e716af7b3dcc status: 200 OK code: 200 duration: "" @@ -3423,19 +3623,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:20:55 GMT + - Wed, 18 Oct 2023 16:48:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3445,7 +3645,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fd5f72b-7c88-4a6b-b3cf-2af62d2ab319 + - 0c5c7d11-0e99-44fd-b5a5-cbf342c7e1ec status: 200 OK code: 200 duration: "" @@ -3456,19 +3656,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:00 GMT + - Wed, 18 Oct 2023 16:48:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3478,7 +3678,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 408e11e3-9279-4535-b525-86c4adfd5b0b + - e1feba1c-45df-42b1-b5df-fc8aa15e2f4c status: 200 OK code: 200 duration: "" @@ -3489,19 +3689,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:05 GMT + - Wed, 18 Oct 2023 16:48:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3511,7 +3711,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 293f2f5e-d288-4fb3-b98e-e1898839d3ff + - 064156b0-02de-4682-a3f4-ffe9956be356 status: 200 OK code: 200 duration: "" @@ -3522,19 +3722,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:10 GMT + - Wed, 18 Oct 2023 16:48:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3544,7 +3744,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 302c8ba6-47b6-4bcf-be84-db3c31e5a823 + - e9e12c67-2173-48c8-adbe-ec63ca4e73de status: 200 OK code: 200 duration: "" @@ -3555,19 +3755,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:15 GMT + - Wed, 18 Oct 2023 16:48:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3577,7 +3777,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11148deb-ae73-4b60-ba59-424ef253e4a9 + - 353cfc5f-2291-4d9b-aee8-e473f565e99e status: 200 OK code: 200 duration: "" @@ -3588,19 +3788,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:20 GMT + - Wed, 18 Oct 2023 16:48:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3610,7 +3810,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5324d668-8069-4cf1-a51c-b9674d1656a8 + - 3e2b3e9c-f6bf-40bc-aaf0-c92046d462b6 status: 200 OK code: 200 duration: "" @@ -3621,19 +3821,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:25 GMT + - Wed, 18 Oct 2023 16:49:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3643,7 +3843,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b539bd6d-8a82-4fbb-92dc-50165701f72d + - 546efd9d-e00b-4739-a641-f13a68f40d01 status: 200 OK code: 200 duration: "" @@ -3654,19 +3854,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:30 GMT + - Wed, 18 Oct 2023 16:49:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3676,7 +3876,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0285a0fc-03a1-400a-a417-9cee94cde81e + - b40dc460-c1b4-4a09-aefb-7a17f98e1bb7 status: 200 OK code: 200 duration: "" @@ -3687,19 +3887,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:35 GMT + - Wed, 18 Oct 2023 16:49:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3709,7 +3909,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b971f615-7f20-4ad6-9202-e20b45062f91 + - 0fdfa74f-f0cf-4bc7-9766-cb575ae254df status: 200 OK code: 200 duration: "" @@ -3720,19 +3920,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:19:54.388273Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1436" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:40 GMT + - Wed, 18 Oct 2023 16:49:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3742,7 +3942,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e5d1858-0f3e-4f51-b033-c29e80ee6867 + - 6e963d21-ff5b-48d0-b453-f43534d72df6 status: 200 OK code: 200 duration: "" @@ -3753,19 +3953,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:21:43.461448Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:47:31.504261Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:45 GMT + - Wed, 18 Oct 2023 16:49:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3775,7 +3975,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15f609c5-0f6d-4157-93b4-35014f7db49c + - 4e4bf897-ea3c-4b45-b682-3a393a0a3ad8 status: 200 OK code: 200 duration: "" @@ -3786,19 +3986,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:21:43.461448Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:49:25.310321Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:45 GMT + - Wed, 18 Oct 2023 16:49:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3808,7 +4008,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96941be2-7bf6-4e2e-b73e-9d5e7b99bc33 + - eb7ae884-5ea0-4b8f-b561-90ffdaeae164 status: 200 OK code: 200 duration: "" @@ -3819,19 +4019,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJyTVU1V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkdzeFRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pRdkNqQnRWR3hYZGxwc2RUWkNNekJ3YkRCRFExcHNXV1poUTNwRlZHMDRVSE5ZVTNsVE15OUtaVU0xVjI5RVpFNUJZM1pXZEM5amRrUXhNazUxYjFweVRsY0tjMnc0YlZGUWFEZzFhSEZzYVVacmREQlhkM05aUzBNNFNVNUNUM0Z0VEdwMlpISndiMkp6UWs0NE5XSkljbTlUVTB0c2VIUk1WWFJzWW10ek1YRXdWUW9yYmxoamVGSktWa1ZtYkVGblVsVXlZekZUUkZwMVkwNXRhekp0ZUVwd2FVRlJjVVJQTlZGdE5scEhSazVSZDFsbU9HdGpOVzVNUjBKYVQxbHpkVE4wQ2tkbVRWWXlWVU13VkRNemNIUk5SbGRaVDIwNVJqSnNlRFJKV0V0bVJtRk5NR1VyVUc1bk5tMVlTR2h3VWtWM1pFVnlNRlUzTkVGUk5VbzJSVVlyVld3S1NVUmhSMUJyY2xWcU1VMXlSVXROU0dwS1VUWTVOa3gzTWprclQwcHplWE0xZDFGcWIyVmFZV3BRUzJZMk9HeFdSV0V4VlVaSlRGSkhVMjA0YjNveVJ3cHdRV1lyT1RKSksxRXlabEkzY0VkSmJVWlZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkJhMkV3TjJkR1MxWnpkbEJWUkRjcmVETTNNbXMxYkZwUFYycE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJaVEI2V0dadE1EVk5Ta1JFVURndlQxVnRkSFUwTkdsUFEyVkhiRE5JWkVRMlpreDNibk4zTldKblMwZHBTbU5pUXdwc1QzTlVPRXBNWWpOellpOWpRM0p0V0RJM05sazRiMDkxWkUxaVZDdEtXa0owTURCdGVtZHJXQ3QzVTBOeU16SnNVMVI2WWt0cldtNWlMMnMwUTBGR0NuSXpaa1psUTNWVlRWSXpiMDEzTWtkak1VdGhiVXRxY1c5Tk5Va3lLMnhoYTNGemQwOXlNbXhtYW1KUlN6WkdPSFUwVXpSRWQwUnRiVWxUY1RVeVJFNEtjMDR4VDNoQmJUVkVNaXRRUWtWRGFqWk9NSE5HZWpRNWExbFRhR3h0ZVd0dmR6VndWemR3WkdsYVJreHdTWGN5SzJGcFowWXlNelpCZGtSYVozZElSQXA0VWxWdldFeGhOSEV2Ukc5R1JWTmtSRzFpZFhkV1pVd3JhRTFuV0RaVmFsVktTRUV4YUhaRFRHMXlZMHd3VGxvcmRURkZiMVV2VEdsQ1dXaFRUWE16Q25KTk1ISXpXbWR3VnpCWU5YSlhkalpETTA1T1dqWjVaMGc1TVZSdVJtWnRPU3RTVHdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2ZlMTFiMjMyLWVlMzEtNDc3MC1hODA4LWZmYWJjZmZkOWI1OC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXTjgyczJFZVJyc1FSeHhDZVdqbE9HTTc4QldCTWpHc011eGJkQVFSWHR0dGdBYXk5c29RVG9XYg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:49:25.310321Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2620" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:45 GMT + - Wed, 18 Oct 2023 16:49:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3841,7 +4041,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e0578a2-61db-4687-9953-a058c807abc6 + - f094f993-9eb8-4c62-a025-9e7e432003a8 status: 200 OK code: 200 duration: "" @@ -3852,19 +4052,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:21:43.461448Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JqZWsweGIxaEVWRTE2VFZSQmVFNTZSVEpPUkdONlRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEhwc0NtRkVkVlZRVm1GNFpVOWtXREJtWkhocWEyeGxaVGQxYlU0NVkycFVkWFUzYzNVM1MzRmlkeXRGY0hBM1pEVlZWVXRyUkZWT1MySkxNVTA0VGt0SlZXY0tNRkpRUTFkbGRYQmFkVlJsVkhSd1MzaG5iSGx2VjJOa1VEQlpaRGhtVVVoUlpITmthRmd6YVhkNGVGRnhTelJTWmxWeVZGTm1ZMjVUVlZKa1JXeDRjQXBHS3psbmVFSm9UWGx2TW5oeE1WaHRSVVk0Vld3eU9WVTRLemRyVW1OSE1tczRlVWRRYlZKRU16aEtNVk5HWW5CTWRFRjVSMFJITXpsU1ZrNW1RV2xEQ21wYVVGZG5kRTkwVTJoV2RUSTJiMFJSYzI1a1NFcExZakI2V2s1bWJtMVVOVVpqUTBsdWJUWnJURzlZUmpob1Qyc3laekZYUVdWb05URXdiVmxOVjNBS1IyZHNhemRGV2pOVWVXaE9ja2xPZVdSVGFYZzJSSFJKWjFSQk0ybGtUMlYxVW5sTGEwMTFURXBHVTNoalYzcElSbE5QYm5KcFkwZ3pSM1l6ZW1OS05BcHlTVTVIUlRaMFlrTkJRVnB3TUU1QmFqVnJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlBkVkExWkdrclIxWXdXbWxNYTFkV2JVWTVNMU0xTkZGMWRuRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZVVZXZUZGc1RscFFNVmhJV0UxUVNuRnZkbVJRTDNaSE5rTkJTMVYxWTJSMmNETkxRell4V2xWSVRtWTNibEpNVWdwMGJYQkJMekl5TTNZdldVeHRUbFJHZVhjd1dERTBiM1pJUVRGMldWbENhbFJOVFdGdmJHVmlkVVJzWld4UWFqSlhSR2hvUW10UWFtcGxXbWt2VkRkdENuUk5NSEl3TTJNM1JYcHVkbXc0VEdOWlZDdHZWa2xWZVdGcWVreGlhMmd6WVVwWGVtUnRSRWM1VTFsSFUydzJhMUpIY2t0WlRXc3JNVFJzYm5aTFpXNEtNQ3RZVFU5bFltRjBUbHBIU0V4SVpsVkxWMDl1TWpWeE1XOU9TV2xsTDJ3NVNsVkROM3BOYmpOMGFHOXZZVFZVYUVwalMzTnNWRFZKVUdsd2JuaEtkd3BRZW1veVJ6ZHVjVk5rY0hkbFVHWTRZWFZoUVZaVUsxWTNNMWt2T0dKbVkzTTBlVTV1VkM5MGVXNXlTMXBqVDAxVE4zQnBja2RhTUdWQmQwMDFNekJoQ2sxek1tUkJaelo1VVZGRFptOXBOQzkzYkZONk1pOHZhMXBVVkhOaVJYVkRabTVQZUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzljZjU0ZTc1LWUwZTgtNDBmOC1iZWM4LTk0M2JjOGYzYjU0MC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBVekVhN29uZXhUcHVpSUtUN2R3V0NvSDFob1NiUlByODNleHdDdGdPWU91YU9XWUN3UXJ4UVdBTQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1433" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:45 GMT + - Wed, 18 Oct 2023 16:49:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3874,7 +4074,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5348409-c7c2-44ec-9983-684427f8d318 + - 007b7b5d-5608-49bc-9057-94453a53f7d7 status: 200 OK code: 200 duration: "" @@ -3885,19 +4085,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:21:43.461448Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:49:25.310321Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:45 GMT + - Wed, 18 Oct 2023 16:49:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3907,7 +4107,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c43cbbf9-b08e-48e5-b603-90669bb0589b + - 2249de1e-fe80-4f17-afd2-5d57616d9731 status: 200 OK code: 200 duration: "" @@ -3918,19 +4118,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58/kubeconfig + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e119ab2a-cb88-4b75-b93d-94e1eabcf342 method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJyTVU1V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkdzeFRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pRdkNqQnRWR3hYZGxwc2RUWkNNekJ3YkRCRFExcHNXV1poUTNwRlZHMDRVSE5ZVTNsVE15OUtaVU0xVjI5RVpFNUJZM1pXZEM5amRrUXhNazUxYjFweVRsY0tjMnc0YlZGUWFEZzFhSEZzYVVacmREQlhkM05aUzBNNFNVNUNUM0Z0VEdwMlpISndiMkp6UWs0NE5XSkljbTlUVTB0c2VIUk1WWFJzWW10ek1YRXdWUW9yYmxoamVGSktWa1ZtYkVGblVsVXlZekZUUkZwMVkwNXRhekp0ZUVwd2FVRlJjVVJQTlZGdE5scEhSazVSZDFsbU9HdGpOVzVNUjBKYVQxbHpkVE4wQ2tkbVRWWXlWVU13VkRNemNIUk5SbGRaVDIwNVJqSnNlRFJKV0V0bVJtRk5NR1VyVUc1bk5tMVlTR2h3VWtWM1pFVnlNRlUzTkVGUk5VbzJSVVlyVld3S1NVUmhSMUJyY2xWcU1VMXlSVXROU0dwS1VUWTVOa3gzTWprclQwcHplWE0xZDFGcWIyVmFZV3BRUzJZMk9HeFdSV0V4VlVaSlRGSkhVMjA0YjNveVJ3cHdRV1lyT1RKSksxRXlabEkzY0VkSmJVWlZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkJhMkV3TjJkR1MxWnpkbEJWUkRjcmVETTNNbXMxYkZwUFYycE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJaVEI2V0dadE1EVk5Ta1JFVURndlQxVnRkSFUwTkdsUFEyVkhiRE5JWkVRMlpreDNibk4zTldKblMwZHBTbU5pUXdwc1QzTlVPRXBNWWpOellpOWpRM0p0V0RJM05sazRiMDkxWkUxaVZDdEtXa0owTURCdGVtZHJXQ3QzVTBOeU16SnNVMVI2WWt0cldtNWlMMnMwUTBGR0NuSXpaa1psUTNWVlRWSXpiMDEzTWtkak1VdGhiVXRxY1c5Tk5Va3lLMnhoYTNGemQwOXlNbXhtYW1KUlN6WkdPSFUwVXpSRWQwUnRiVWxUY1RVeVJFNEtjMDR4VDNoQmJUVkVNaXRRUWtWRGFqWk9NSE5HZWpRNWExbFRhR3h0ZVd0dmR6VndWemR3WkdsYVJreHdTWGN5SzJGcFowWXlNelpCZGtSYVozZElSQXA0VWxWdldFeGhOSEV2Ukc5R1JWTmtSRzFpZFhkV1pVd3JhRTFuV0RaVmFsVktTRUV4YUhaRFRHMXlZMHd3VGxvcmRURkZiMVV2VEdsQ1dXaFRUWE16Q25KTk1ISXpXbWR3VnpCWU5YSlhkalpETTA1T1dqWjVaMGc1TVZSdVJtWnRPU3RTVHdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2ZlMTFiMjMyLWVlMzEtNDc3MC1hODA4LWZmYWJjZmZkOWI1OC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXTjgyczJFZVJyc1FSeHhDZVdqbE9HTTc4QldCTWpHc011eGJkQVFSWHR0dGdBYXk5c29RVG9XYg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"created_at":"2023-10-18T16:43:35.686906Z","dhcp_enabled":true,"id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:35.686906Z","id":"6e957e34-653e-4fed-ad63-38ba4eb78285","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:43:35.686906Z"},{"created_at":"2023-10-18T16:43:35.686906Z","id":"975a8ca4-bf73-442f-8fed-25cd29f6029e","subnet":"fd63:256c:45f7:91b4::/64","updated_at":"2023-10-18T16:43:35.686906Z"}],"tags":[],"updated_at":"2023-10-18T16:43:35.686906Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "2620" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:45 GMT + - Wed, 18 Oct 2023 16:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3940,7 +4140,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f07a08d5-7b24-4fa8-b1dc-bf7e66376a42 + - 99afc388-2e7a-48fe-905d-dc1336580b26 status: 200 OK code: 200 duration: "" @@ -3951,19 +4151,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:21:43.461448Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:49:25.310321Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1433" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3973,7 +4173,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3b2d187-43ea-42c1-9182-87808437ba34 + - 1a4ddc06-1bc8-4c32-b326-10b9f4de2250 status: 200 OK code: 200 duration: "" @@ -3984,19 +4184,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUVlJyTVU1V2IxaEVWRTE2VFVSbmVrMVVSVEpOVkdzeFRsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCU3pRdkNqQnRWR3hYZGxwc2RUWkNNekJ3YkRCRFExcHNXV1poUTNwRlZHMDRVSE5ZVTNsVE15OUtaVU0xVjI5RVpFNUJZM1pXZEM5amRrUXhNazUxYjFweVRsY0tjMnc0YlZGUWFEZzFhSEZzYVVacmREQlhkM05aUzBNNFNVNUNUM0Z0VEdwMlpISndiMkp6UWs0NE5XSkljbTlUVTB0c2VIUk1WWFJzWW10ek1YRXdWUW9yYmxoamVGSktWa1ZtYkVGblVsVXlZekZUUkZwMVkwNXRhekp0ZUVwd2FVRlJjVVJQTlZGdE5scEhSazVSZDFsbU9HdGpOVzVNUjBKYVQxbHpkVE4wQ2tkbVRWWXlWVU13VkRNemNIUk5SbGRaVDIwNVJqSnNlRFJKV0V0bVJtRk5NR1VyVUc1bk5tMVlTR2h3VWtWM1pFVnlNRlUzTkVGUk5VbzJSVVlyVld3S1NVUmhSMUJyY2xWcU1VMXlSVXROU0dwS1VUWTVOa3gzTWprclQwcHplWE0xZDFGcWIyVmFZV3BRUzJZMk9HeFdSV0V4VlVaSlRGSkhVMjA0YjNveVJ3cHdRV1lyT1RKSksxRXlabEkzY0VkSmJVWlZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkJhMkV3TjJkR1MxWnpkbEJWUkRjcmVETTNNbXMxYkZwUFYycE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJaVEI2V0dadE1EVk5Ta1JFVURndlQxVnRkSFUwTkdsUFEyVkhiRE5JWkVRMlpreDNibk4zTldKblMwZHBTbU5pUXdwc1QzTlVPRXBNWWpOellpOWpRM0p0V0RJM05sazRiMDkxWkUxaVZDdEtXa0owTURCdGVtZHJXQ3QzVTBOeU16SnNVMVI2WWt0cldtNWlMMnMwUTBGR0NuSXpaa1psUTNWVlRWSXpiMDEzTWtkak1VdGhiVXRxY1c5Tk5Va3lLMnhoYTNGemQwOXlNbXhtYW1KUlN6WkdPSFUwVXpSRWQwUnRiVWxUY1RVeVJFNEtjMDR4VDNoQmJUVkVNaXRRUWtWRGFqWk9NSE5HZWpRNWExbFRhR3h0ZVd0dmR6VndWemR3WkdsYVJreHdTWGN5SzJGcFowWXlNelpCZGtSYVozZElSQXA0VWxWdldFeGhOSEV2Ukc5R1JWTmtSRzFpZFhkV1pVd3JhRTFuV0RaVmFsVktTRUV4YUhaRFRHMXlZMHd3VGxvcmRURkZiMVV2VEdsQ1dXaFRUWE16Q25KTk1ISXpXbWR3VnpCWU5YSlhkalpETTA1T1dqWjVaMGc1TVZSdVJtWnRPU3RTVHdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2ZlMTFiMjMyLWVlMzEtNDc3MC1hODA4LWZmYWJjZmZkOWI1OC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBXTjgyczJFZVJyc1FSeHhDZVdqbE9HTTc4QldCTWpHc011eGJkQVFSWHR0dGdBYXk5c29RVG9XYg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JqZWsweGIxaEVWRTE2VFZSQmVFNTZSVEpPUkdONlRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEhwc0NtRkVkVlZRVm1GNFpVOWtXREJtWkhocWEyeGxaVGQxYlU0NVkycFVkWFUzYzNVM1MzRmlkeXRGY0hBM1pEVlZWVXRyUkZWT1MySkxNVTA0VGt0SlZXY0tNRkpRUTFkbGRYQmFkVlJsVkhSd1MzaG5iSGx2VjJOa1VEQlpaRGhtVVVoUlpITmthRmd6YVhkNGVGRnhTelJTWmxWeVZGTm1ZMjVUVlZKa1JXeDRjQXBHS3psbmVFSm9UWGx2TW5oeE1WaHRSVVk0Vld3eU9WVTRLemRyVW1OSE1tczRlVWRRYlZKRU16aEtNVk5HWW5CTWRFRjVSMFJITXpsU1ZrNW1RV2xEQ21wYVVGZG5kRTkwVTJoV2RUSTJiMFJSYzI1a1NFcExZakI2V2s1bWJtMVVOVVpqUTBsdWJUWnJURzlZUmpob1Qyc3laekZYUVdWb05URXdiVmxOVjNBS1IyZHNhemRGV2pOVWVXaE9ja2xPZVdSVGFYZzJSSFJKWjFSQk0ybGtUMlYxVW5sTGEwMTFURXBHVTNoalYzcElSbE5QYm5KcFkwZ3pSM1l6ZW1OS05BcHlTVTVIUlRaMFlrTkJRVnB3TUU1QmFqVnJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlBkVkExWkdrclIxWXdXbWxNYTFkV2JVWTVNMU0xTkZGMWRuRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZVVZXZUZGc1RscFFNVmhJV0UxUVNuRnZkbVJRTDNaSE5rTkJTMVYxWTJSMmNETkxRell4V2xWSVRtWTNibEpNVWdwMGJYQkJMekl5TTNZdldVeHRUbFJHZVhjd1dERTBiM1pJUVRGMldWbENhbFJOVFdGdmJHVmlkVVJzWld4UWFqSlhSR2hvUW10UWFtcGxXbWt2VkRkdENuUk5NSEl3TTJNM1JYcHVkbXc0VEdOWlZDdHZWa2xWZVdGcWVreGlhMmd6WVVwWGVtUnRSRWM1VTFsSFUydzJhMUpIY2t0WlRXc3JNVFJzYm5aTFpXNEtNQ3RZVFU5bFltRjBUbHBIU0V4SVpsVkxWMDl1TWpWeE1XOU9TV2xsTDJ3NVNsVkROM3BOYmpOMGFHOXZZVFZVYUVwalMzTnNWRFZKVUdsd2JuaEtkd3BRZW1veVJ6ZHVjVk5rY0hkbFVHWTRZWFZoUVZaVUsxWTNNMWt2T0dKbVkzTTBlVTV1VkM5MGVXNXlTMXBqVDAxVE4zQnBja2RhTUdWQmQwMDFNekJoQ2sxek1tUkJaelo1VVZGRFptOXBOQzkzYkZONk1pOHZhMXBVVkhOaVJYVkRabTVQZUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzljZjU0ZTc1LWUwZTgtNDBmOC1iZWM4LTk0M2JjOGYzYjU0MC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBVekVhN29uZXhUcHVpSUtUN2R3V0NvSDFob1NiUlByODNleHdDdGdPWU91YU9XWUN3UXJ4UVdBTQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2620" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4006,7 +4206,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a03c19b-e76b-4027-9fb6-788509665de6 + - a31dd3ab-7808-40d8-8c60-33301f1769a2 status: 200 OK code: 200 duration: "" @@ -4017,19 +4217,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58/available-types + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e119ab2a-cb88-4b75-b93d-94e1eabcf342 method: GET response: - body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}' + body: '{"created_at":"2023-10-18T16:43:35.686906Z","dhcp_enabled":true,"id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","name":"test-type-change","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2023-10-18T16:43:35.686906Z","id":"6e957e34-653e-4fed-ad63-38ba4eb78285","subnet":"172.16.16.0/22","updated_at":"2023-10-18T16:43:35.686906Z"},{"created_at":"2023-10-18T16:43:35.686906Z","id":"975a8ca4-bf73-442f-8fed-25cd29f6029e","subnet":"fd63:256c:45f7:91b4::/64","updated_at":"2023-10-18T16:43:35.686906Z"}],"tags":[],"updated_at":"2023-10-18T16:43:35.686906Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' headers: Content-Length: - - "222" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4039,7 +4239,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc68970a-6475-44be-b3f3-6a045db869f0 + - 14bf58cf-cf0c-409c-aef3-aa4d4ef174b3 status: 200 OK code: 200 duration: "" @@ -4050,19 +4250,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:49:25.310321Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "222" + - "1512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4072,7 +4272,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cabaf895-00eb-4bec-b778-387b7d0cc5c9 + - 6533282b-8ca4-4556-9b99-f99b9fe91146 status: 200 OK code: 200 duration: "" @@ -4083,19 +4283,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58?with_additional_resources=true - method: DELETE + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540/kubeconfig + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:21:46.513107963Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JqZWsweGIxaEVWRTE2VFZSQmVFNTZSVEpPUkdONlRURnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEhwc0NtRkVkVlZRVm1GNFpVOWtXREJtWkhocWEyeGxaVGQxYlU0NVkycFVkWFUzYzNVM1MzRmlkeXRGY0hBM1pEVlZWVXRyUkZWT1MySkxNVTA0VGt0SlZXY0tNRkpRUTFkbGRYQmFkVlJsVkhSd1MzaG5iSGx2VjJOa1VEQlpaRGhtVVVoUlpITmthRmd6YVhkNGVGRnhTelJTWmxWeVZGTm1ZMjVUVlZKa1JXeDRjQXBHS3psbmVFSm9UWGx2TW5oeE1WaHRSVVk0Vld3eU9WVTRLemRyVW1OSE1tczRlVWRRYlZKRU16aEtNVk5HWW5CTWRFRjVSMFJITXpsU1ZrNW1RV2xEQ21wYVVGZG5kRTkwVTJoV2RUSTJiMFJSYzI1a1NFcExZakI2V2s1bWJtMVVOVVpqUTBsdWJUWnJURzlZUmpob1Qyc3laekZYUVdWb05URXdiVmxOVjNBS1IyZHNhemRGV2pOVWVXaE9ja2xPZVdSVGFYZzJSSFJKWjFSQk0ybGtUMlYxVW5sTGEwMTFURXBHVTNoalYzcElSbE5QYm5KcFkwZ3pSM1l6ZW1OS05BcHlTVTVIUlRaMFlrTkJRVnB3TUU1QmFqVnJRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWlBkVkExWkdrclIxWXdXbWxNYTFkV2JVWTVNMU0xTkZGMWRuRk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRZVVZXZUZGc1RscFFNVmhJV0UxUVNuRnZkbVJRTDNaSE5rTkJTMVYxWTJSMmNETkxRell4V2xWSVRtWTNibEpNVWdwMGJYQkJMekl5TTNZdldVeHRUbFJHZVhjd1dERTBiM1pJUVRGMldWbENhbFJOVFdGdmJHVmlkVVJzWld4UWFqSlhSR2hvUW10UWFtcGxXbWt2VkRkdENuUk5NSEl3TTJNM1JYcHVkbXc0VEdOWlZDdHZWa2xWZVdGcWVreGlhMmd6WVVwWGVtUnRSRWM1VTFsSFUydzJhMUpIY2t0WlRXc3JNVFJzYm5aTFpXNEtNQ3RZVFU5bFltRjBUbHBIU0V4SVpsVkxWMDl1TWpWeE1XOU9TV2xsTDJ3NVNsVkROM3BOYmpOMGFHOXZZVFZVYUVwalMzTnNWRFZKVUdsd2JuaEtkd3BRZW1veVJ6ZHVjVk5rY0hkbFVHWTRZWFZoUVZaVUsxWTNNMWt2T0dKbVkzTTBlVTV1VkM5MGVXNXlTMXBqVDAxVE4zQnBja2RhTUdWQmQwMDFNekJoQ2sxek1tUkJaelo1VVZGRFptOXBOQzkzYkZONk1pOHZhMXBVVkhOaVJYVkRabTVQZUFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzljZjU0ZTc1LWUwZTgtNDBmOC1iZWM4LTk0M2JjOGYzYjU0MC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBVekVhN29uZXhUcHVpSUtUN2R3V0NvSDFob1NiUlByODNleHdDdGdPWU91YU9XWUN3UXJ4UVdBTQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1439" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4105,7 +4305,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 090fec52-6518-42c9-8228-9a13d8131f00 + - 587bf5e6-f7ab-4c42-8448-92353e266336 status: 200 OK code: 200 duration: "" @@ -4116,19 +4316,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540/available-types method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:21:46.513108Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}' headers: Content-Length: - - "1436" + - "230" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:46 GMT + - Wed, 18 Oct 2023 16:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4138,7 +4338,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ede5b180-50c9-41d3-a93e-a1a2085b0cf4 + - d895df3e-047d-4271-89d9-3c38aef3286c status: 200 OK code: 200 duration: "" @@ -4149,19 +4349,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540/available-types method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://fe11b232-ee31-4770-a808-ffabcffd9b58.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-10-01T16:19:54.380483Z","created_at":"2023-09-01T16:19:54.380483Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.fe11b232-ee31-4770-a808-ffabcffd9b58.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"fe11b232-ee31-4770-a808-ffabcffd9b58","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-09-01T16:21:46.513108Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"kapsule-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}' headers: Content-Length: - - "1436" + - "230" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:51 GMT + - Wed, 18 Oct 2023 16:49:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4171,7 +4371,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9bd071a-c943-4065-b617-0297cbce981b + - 9abdc8d2-89e1-471b-b19b-f84620f1a3a3 status: 200 OK code: 200 duration: "" @@ -4182,19 +4382,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fe11b232-ee31-4770-a808-ffabcffd9b58 - method: GET + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540?with_additional_resources=false + method: DELETE response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"fe11b232-ee31-4770-a808-ffabcffd9b58","type":"not_found"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:49:33.428604812Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "128" + - "1518" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:56 GMT + - Wed, 18 Oct 2023 16:49:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4204,32 +4404,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75168273-1bb9-4eaf-8328-df67993da70c - status: 404 Not Found - code: 404 + - 9d81c0e3-0aa8-47db-bb5a-e2206d66fe04 + status: 200 OK + code: 200 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud-dedicated-4","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.0","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901365Z","created_at":"2023-09-01T16:21:56.777901365Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787473801Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:49:33.428605Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1446" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:56 GMT + - Wed, 18 Oct 2023 16:49:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4239,7 +4437,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09686099-b15c-4b43-bb80-c8ecd5dd1aaf + - 7604385b-be54-46fa-a4cf-49cace7d4ad5 status: 200 OK code: 200 duration: "" @@ -4250,19 +4448,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://9cf54e75-e0e8-40f8-bec8-943bc8f3b540.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2023-11-17T16:47:31.489574Z","created_at":"2023-10-18T16:47:31.489574Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.9cf54e75-e0e8-40f8-bec8-943bc8f3b540.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"e119ab2a-cb88-4b75-b93d-94e1eabcf342","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"kapsule-dedicated-8","updated_at":"2023-10-18T16:49:33.428605Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:21:56 GMT + - Wed, 18 Oct 2023 16:49:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4272,7 +4470,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c48bfffb-8814-4b90-b5dd-ade6bcc08ff3 + - b3a71b54-c44e-4767-bd67-9d30a0ca18cf status: 200 OK code: 200 duration: "" @@ -4283,19 +4481,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/9cf54e75-e0e8-40f8-bec8-943bc8f3b540 method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"9cf54e75-e0e8-40f8-bec8-943bc8f3b540","type":"not_found"}' headers: Content-Length: - - "1437" + - "128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:01 GMT + - Wed, 18 Oct 2023 16:49:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4305,7 +4503,73 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 845633c9-66be-4800-ad55-575b8858f724 + - a3c6e94e-406d-4e12-a30d-6f7ed665eece + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e119ab2a-cb88-4b75-b93d-94e1eabcf342 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 38793e19-05b7-4463-ab08-4fe115ca2fb3 + status: 204 No Content + code: 204 + duration: "" +- request: + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud-dedicated-4","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298736533Z","created_at":"2023-10-18T16:49:44.298736533Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310402696Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1491" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:49:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 10e97114-4f64-4d48-b08a-db442559039c status: 200 OK code: 200 duration: "" @@ -4316,19 +4580,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:06 GMT + - Wed, 18 Oct 2023 16:49:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4338,7 +4602,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f6a4b94-f4b2-46af-970c-daa61db78f26 + - b70ad633-f471-48fb-b901-5815a531bb00 status: 200 OK code: 200 duration: "" @@ -4349,19 +4613,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:12 GMT + - Wed, 18 Oct 2023 16:49:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4371,7 +4635,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ede2603-0b4c-4743-89eb-5eddf67d0c1d + - d34a04e7-f69d-4826-95ca-3622df15a453 status: 200 OK code: 200 duration: "" @@ -4382,19 +4646,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:17 GMT + - Wed, 18 Oct 2023 16:49:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4404,7 +4668,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b817591-c50f-4680-8182-a28c173c5ae6 + - e474f30a-3b2a-46ff-a344-50f00c3ec6bf status: 200 OK code: 200 duration: "" @@ -4415,19 +4679,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:22 GMT + - Wed, 18 Oct 2023 16:49:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4437,7 +4701,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 362cd1b1-00d2-4888-9511-bb180d61d612 + - 890f9fc9-e643-49f7-b41b-7e02f74e99ba status: 200 OK code: 200 duration: "" @@ -4448,19 +4712,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:27 GMT + - Wed, 18 Oct 2023 16:50:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4470,7 +4734,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce95c7c4-9416-4d54-8142-f518540aec40 + - 477f5eaa-1dea-44fa-bfc1-a2b2af6a6d1a status: 200 OK code: 200 duration: "" @@ -4481,19 +4745,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:32 GMT + - Wed, 18 Oct 2023 16:50:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4503,7 +4767,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa7c5e63-3c76-4275-9e1b-e9aaf5ed7684 + - 51fa31a8-685d-4c71-8734-967e993501c8 status: 200 OK code: 200 duration: "" @@ -4514,19 +4778,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:37 GMT + - Wed, 18 Oct 2023 16:50:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4536,7 +4800,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75a2765c-ad9e-4e1f-b1b0-170244a7cfe8 + - 8a7694b9-573f-4006-8b42-72a1fc0f2f95 status: 200 OK code: 200 duration: "" @@ -4547,19 +4811,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:42 GMT + - Wed, 18 Oct 2023 16:50:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4569,7 +4833,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2dcf081-93a4-414a-9364-adf6c714144b + - 96658670-5d18-46c3-bab2-e3f027c13c4c status: 200 OK code: 200 duration: "" @@ -4580,19 +4844,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:47 GMT + - Wed, 18 Oct 2023 16:50:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4602,7 +4866,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e3a19ec-0491-4614-a6ec-87df0156a5f8 + - dc47e26d-a447-4210-bf29-d27d0aeee64e status: 200 OK code: 200 duration: "" @@ -4613,19 +4877,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:52 GMT + - Wed, 18 Oct 2023 16:50:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4635,7 +4899,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad261516-51cb-4b37-a61f-3da63227c423 + - 1f7784b0-d066-467b-a64b-2177fe0a0206 status: 200 OK code: 200 duration: "" @@ -4646,19 +4910,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:22:57 GMT + - Wed, 18 Oct 2023 16:50:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4668,7 +4932,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed07d901-5f44-423b-9069-757ee5ff19b8 + - ec86c06f-5850-4237-ab1f-62df5c8c6081 status: 200 OK code: 200 duration: "" @@ -4679,19 +4943,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:02 GMT + - Wed, 18 Oct 2023 16:50:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4701,7 +4965,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46b0cbe7-00eb-46f3-ac48-daf33baa7d16 + - c6443928-a917-4c28-bcaf-2251e39bad61 status: 200 OK code: 200 duration: "" @@ -4712,19 +4976,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:21:56.787474Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:07 GMT + - Wed, 18 Oct 2023 16:50:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4734,7 +4998,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcab766c-0d84-48e3-8b10-a2958fe4e964 + - f7c7a4f8-6747-4ad3-804a-f14b72cb23e5 status: 200 OK code: 200 duration: "" @@ -4745,19 +5009,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:23:09.159390Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:12 GMT + - Wed, 18 Oct 2023 16:50:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4767,7 +5031,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df5b7c6a-c94f-4865-a363-eaec0a508623 + - e76148ca-0d1e-42f6-8922-f4f18ec13e93 status: 200 OK code: 200 duration: "" @@ -4778,19 +5042,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:23:09.159390Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:49:44.310403Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:12 GMT + - Wed, 18 Oct 2023 16:50:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4800,7 +5064,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2344716-7e92-42d9-a039-04b2aac99a6a + - 4fc19744-4f7d-4577-ac1e-13893fc3c662 status: 200 OK code: 200 duration: "" @@ -4811,19 +5075,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEZsaENqTnBVMjFuVW05RVlsbFJObk5SVlZCbWNFSlZOekl6WlZCM01XRXdhWEZMYUZkcVlVMU9hMGt2V1RRMldsUkZlRFUwYkhsR1oyYzRjbWRNWWtoWGFHNEtNR2w2TUVwaVEwSkZRVkJoVEZkdWJuVlNSR2RTVkRoU2NsbzRSa1pNTTJ0alR6SjBLek4xTlZkUU4wNUVlVkpxYVRGa1ZUSlFabHBxYms4NE5ETlFhZ3BXTVRSMmNsUlZPVmN4VkdjeGFIZHBSazlVYUhSRFlqQmtiVUYzZWxNNGVYbHRNVEZEU3pBdk0wcElkbU5sVWpacFRFaFpSMnNyYjJodlRVaGpiR0k0Q2pWRlZIaFdlblJPYUZwblkyeG1WR3RTU0haS2NrNVpNV05USzFWM1J6TnhhSGxUU2tOcVpXbE1RWGMyWVdzNE5HWjJLMm9yVFZjME5HTjBZbVp5VWxZS1pHMVdkVUZWVjB0RVZ6VkVNRTVvTkVONE1XMXVabWQyY214Q1pHcElXSE5rVHpacFVYSkxUMGgwVEdOelJXeDJlRmxaVnpsck5rMUtWMk5QY0RBMlNBcFNMMUkyYXpkRFl6WXdVVkZxYmxwUFltSk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9hVkJQU1RadE5taE5SV1JyVFhKNU5tcG5Xako2Y25wcFUwbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNiaXRwYkZsMVUxQkdaWFptTXl0NWREUkdUSEJEZGpKU2FUTXJTRVpJWVhwU2VVMTZkMHBCWlVKYVJFSkxkRTVKTXdvMVZuWnpha2NyYTBSa05pdFZSbFpMWVdkUk9ERXJlVEpVZG5VeGEwdENVMjF4UW1aTlluQlphekZhWjNJckswNUJTVGRuTWxOYVlrRndXRzlhY0VaRkNubHJSVzVHVDJKcU0wVllPQ3QzTm1wMGNGUldlR0l5Tm5aWmFqSmtVbEZEYzNWUE4zZHZZelZEVWxoV1EzUnJWRnB1YWxoaVNtSTFSblZ2VW5OWVQyb0tWR3RzUjB3MmJHNDFhVU4xWW5acEt6RkZjVkExVW5acE1WWnNZM3BEZDA1d1JHd3dlRXRKYnpjM2JtaG9ZVUpHYUhOalpYTTNXbXR1UW13M1kxSjRRUXBKZWxacVVHSjZUSEJZTW5oa2EydzJaMnd3VEVrNVNFWXpWbWRrZUc5UE5HVnBPSFZNTTFSMlRFTkRTa3AwVVRWMkszVTFaR05MUnpoT09IUm9ObE5wQ2s1cGJqQldhWE4yVVVoUVduVTNObk5oWXpabmNHMHpPVUZYWm1WdlRuZzJWRGRuVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2FjOThhYWU5LTU2M2ItNDMyOC05OGRmLTRkMWE3N2M1ODhjNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBajJuN0hyNEl2bkRLcklCNjZob0R1dkNWWGd0ZGVHMTd4Z1N6VkQzVHU2VlRxakNDZFpXV0tBUg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:50:58.570529Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2620" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:12 GMT + - Wed, 18 Oct 2023 16:51:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4833,7 +5097,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8af7ca0-fa3e-4ced-a35b-a935a1babe12 + - a53343da-039e-44de-9d57-3c1d92d916bb status: 200 OK code: 200 duration: "" @@ -4844,19 +5108,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:23:09.159390Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:50:58.570529Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:12 GMT + - Wed, 18 Oct 2023 16:51:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4866,7 +5130,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22071660-26c5-4e2e-b5ce-e2a27f3e0e6a + - 3f4d016f-410e-4691-a362-a60cda4337f5 status: 200 OK code: 200 duration: "" @@ -4877,19 +5141,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/kubeconfig method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:23:09.159390Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JyTUU1V2IxaEVWRTE2VFZSQmVFNTZSVEpPUkdzd1RsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEdnNUNqZ3lWVzFzVW5Bek0zaHdXVzVQUjJWUmFrVlhSbmxwYUd0YWFtNXpMME5CTDBaSll6ZzBNMnRxTmpWMWMyMVhTMnBuY0dOUlFuSlNkU3RVTkdZNWNGY0tUbWRoU25OemFVMXZXRmx4WjBjMFMyeHRibGxrTm5ZeE0xUXJPVkZNWjNsc1lqVnZVVzlNV1V4eWVuVktZMFZRYldObmNYQlBRelpQSzNWUUwyODFSUXBDTkRKbU1IWkZiVmh2VjBSVWRub3lVekZzYVdKclNtSTVNRWMyVUdaWWEycDBkMUJ5Y0RWWU16UkpjQ3R0YjFwbFVEQlhSbEV6ZGl0MlVHTTNTSEpaQ2tZeWFtZENPRGRCUmt3Mk1qTkhSVlpWWmtVNUt6ZG9abEJYU0hSTVpWQnlZalpUTkVVelJXa3dOeTl1TmpkR05EaDNSM0ZEYlhsMEwzUmFOeTgwVW04S1FWSmFUMDV6WlZselFVdFNVRFV6U0ZwbGNtVldibEU1ZVVob1VuTlhkekpHYTFBMU5rdGhjakZZUWxWVllrMUVaMDVOWmlzeVN6Qk9RblI1TTI0NU1BcG9TbWxKYUhsTFpqSXhXVlI1TDJ4bkszVk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktOV0YxU1VsTFp6UnRLMnhJTDNScFVUTnROVU4wVTFKVVVVZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJPR2hHUldGU01tOTVSM1owT0hwQ1FtSmhNMnRqZEhoSWN5OXVUbXRtTUhGTGNTdHBhSEowZERKeFEwUkdaakZvTkFwdmFXcG9NRWxVTTFwVlJ6QjRTMlZaWWtGdVRXVk9VRVJGVld0bVRGSnFZbk50U0ZweVdGSllSVU4wWmxwamRIQlJlWEpKVW14Wk4wVlhaa2hvVUhWVkNtVm1hV1ZMVVZoNWFHSkJkWFJ5U2tGaVQxVjJSa2xtVGpOR2N6aHBiek5QTTFSbk9ISTNlRzEyVWpaYVFuTTNkekl6UkVwRlptUXhZbTFMYTBKMFIyOEtSQ3RoWWxrd1ZqVXZVWGRuWm5aTVFrNVdkR2R5VFdJMlJXUklNRWt4VEdkc016UnBhVE50TlUxMFlWaEhhV1ZRVm5OeE9GUTBkMDFrUjJWMU5teFZUQW8zT1RSNVQwNU5TRXhpV0Roc1NtOWpNRU42SzJaa2RGZHJlVVZVZEV0NFRubDJiVFJZUlU1QlFsWkRhR1ZhZVZaYVJVZFNRbWhQTVhNclNFOVZRVTB6Q21aM01GaDNMMnBqTTBjMk5HVlVVV1ZhVDI5M2RGaEZibXR1WTI1aWVrUnZXVEJ4VXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzhhMWY2YjU4LTI1ZWQtNGY4Zi1iNzlhLTYwNDFkYTlhMmVlZS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiTDJEdzNwZXZxRXlNcGhnc0N0dlExNVd0bm81U0ZLSHVLbXpmanM1b0QxY1VveVpqMU53dHRYYQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "1434" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:12 GMT + - Wed, 18 Oct 2023 16:51:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4899,7 +5163,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42302ed0-b051-49fd-80e2-bb45212a2737 + - da14934f-4971-43e9-977a-e357e16f5022 status: 200 OK code: 200 duration: "" @@ -4910,19 +5174,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEZsaENqTnBVMjFuVW05RVlsbFJObk5SVlZCbWNFSlZOekl6WlZCM01XRXdhWEZMYUZkcVlVMU9hMGt2V1RRMldsUkZlRFUwYkhsR1oyYzRjbWRNWWtoWGFHNEtNR2w2TUVwaVEwSkZRVkJoVEZkdWJuVlNSR2RTVkRoU2NsbzRSa1pNTTJ0alR6SjBLek4xTlZkUU4wNUVlVkpxYVRGa1ZUSlFabHBxYms4NE5ETlFhZ3BXTVRSMmNsUlZPVmN4VkdjeGFIZHBSazlVYUhSRFlqQmtiVUYzZWxNNGVYbHRNVEZEU3pBdk0wcElkbU5sVWpacFRFaFpSMnNyYjJodlRVaGpiR0k0Q2pWRlZIaFdlblJPYUZwblkyeG1WR3RTU0haS2NrNVpNV05USzFWM1J6TnhhSGxUU2tOcVpXbE1RWGMyWVdzNE5HWjJLMm9yVFZjME5HTjBZbVp5VWxZS1pHMVdkVUZWVjB0RVZ6VkVNRTVvTkVONE1XMXVabWQyY214Q1pHcElXSE5rVHpacFVYSkxUMGgwVEdOelJXeDJlRmxaVnpsck5rMUtWMk5QY0RBMlNBcFNMMUkyYXpkRFl6WXdVVkZxYmxwUFltSk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9hVkJQU1RadE5taE5SV1JyVFhKNU5tcG5Xako2Y25wcFUwbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNiaXRwYkZsMVUxQkdaWFptTXl0NWREUkdUSEJEZGpKU2FUTXJTRVpJWVhwU2VVMTZkMHBCWlVKYVJFSkxkRTVKTXdvMVZuWnpha2NyYTBSa05pdFZSbFpMWVdkUk9ERXJlVEpVZG5VeGEwdENVMjF4UW1aTlluQlphekZhWjNJckswNUJTVGRuTWxOYVlrRndXRzlhY0VaRkNubHJSVzVHVDJKcU0wVllPQ3QzTm1wMGNGUldlR0l5Tm5aWmFqSmtVbEZEYzNWUE4zZHZZelZEVWxoV1EzUnJWRnB1YWxoaVNtSTFSblZ2VW5OWVQyb0tWR3RzUjB3MmJHNDFhVU4xWW5acEt6RkZjVkExVW5acE1WWnNZM3BEZDA1d1JHd3dlRXRKYnpjM2JtaG9ZVUpHYUhOalpYTTNXbXR1UW13M1kxSjRRUXBKZWxacVVHSjZUSEJZTW5oa2EydzJaMnd3VEVrNVNFWXpWbWRrZUc5UE5HVnBPSFZNTTFSMlRFTkRTa3AwVVRWMkszVTFaR05MUnpoT09IUm9ObE5wQ2s1cGJqQldhWE4yVVVoUVduVTNObk5oWXpabmNHMHpPVUZYWm1WdlRuZzJWRGRuVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2FjOThhYWU5LTU2M2ItNDMyOC05OGRmLTRkMWE3N2M1ODhjNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBajJuN0hyNEl2bkRLcklCNjZob0R1dkNWWGd0ZGVHMTd4Z1N6VkQzVHU2VlRxakNDZFpXV0tBUg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:50:58.570529Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "2620" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:13 GMT + - Wed, 18 Oct 2023 16:51:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4932,7 +5196,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1dc9c34-66cf-4785-a9a9-9e57371f37a3 + - e09e3ccb-8f37-4e1c-ba00-f0aaef66d4fb status: 200 OK code: 200 duration: "" @@ -4943,19 +5207,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:23:09.159390Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:50:58.570529Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:13 GMT + - Wed, 18 Oct 2023 16:51:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4965,7 +5229,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83626343-e181-4e87-9671-fc09d74aa288 + - dc5870a3-9aa1-4df1-8260-49f94f9f0204 status: 200 OK code: 200 duration: "" @@ -4976,19 +5240,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEZsaENqTnBVMjFuVW05RVlsbFJObk5SVlZCbWNFSlZOekl6WlZCM01XRXdhWEZMYUZkcVlVMU9hMGt2V1RRMldsUkZlRFUwYkhsR1oyYzRjbWRNWWtoWGFHNEtNR2w2TUVwaVEwSkZRVkJoVEZkdWJuVlNSR2RTVkRoU2NsbzRSa1pNTTJ0alR6SjBLek4xTlZkUU4wNUVlVkpxYVRGa1ZUSlFabHBxYms4NE5ETlFhZ3BXTVRSMmNsUlZPVmN4VkdjeGFIZHBSazlVYUhSRFlqQmtiVUYzZWxNNGVYbHRNVEZEU3pBdk0wcElkbU5sVWpacFRFaFpSMnNyYjJodlRVaGpiR0k0Q2pWRlZIaFdlblJPYUZwblkyeG1WR3RTU0haS2NrNVpNV05USzFWM1J6TnhhSGxUU2tOcVpXbE1RWGMyWVdzNE5HWjJLMm9yVFZjME5HTjBZbVp5VWxZS1pHMVdkVUZWVjB0RVZ6VkVNRTVvTkVONE1XMXVabWQyY214Q1pHcElXSE5rVHpacFVYSkxUMGgwVEdOelJXeDJlRmxaVnpsck5rMUtWMk5QY0RBMlNBcFNMMUkyYXpkRFl6WXdVVkZxYmxwUFltSk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9hVkJQU1RadE5taE5SV1JyVFhKNU5tcG5Xako2Y25wcFUwbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNiaXRwYkZsMVUxQkdaWFptTXl0NWREUkdUSEJEZGpKU2FUTXJTRVpJWVhwU2VVMTZkMHBCWlVKYVJFSkxkRTVKTXdvMVZuWnpha2NyYTBSa05pdFZSbFpMWVdkUk9ERXJlVEpVZG5VeGEwdENVMjF4UW1aTlluQlphekZhWjNJckswNUJTVGRuTWxOYVlrRndXRzlhY0VaRkNubHJSVzVHVDJKcU0wVllPQ3QzTm1wMGNGUldlR0l5Tm5aWmFqSmtVbEZEYzNWUE4zZHZZelZEVWxoV1EzUnJWRnB1YWxoaVNtSTFSblZ2VW5OWVQyb0tWR3RzUjB3MmJHNDFhVU4xWW5acEt6RkZjVkExVW5acE1WWnNZM3BEZDA1d1JHd3dlRXRKYnpjM2JtaG9ZVUpHYUhOalpYTTNXbXR1UW13M1kxSjRRUXBKZWxacVVHSjZUSEJZTW5oa2EydzJaMnd3VEVrNVNFWXpWbWRrZUc5UE5HVnBPSFZNTTFSMlRFTkRTa3AwVVRWMkszVTFaR05MUnpoT09IUm9ObE5wQ2s1cGJqQldhWE4yVVVoUVduVTNObk5oWXpabmNHMHpPVUZYWm1WdlRuZzJWRGRuVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2FjOThhYWU5LTU2M2ItNDMyOC05OGRmLTRkMWE3N2M1ODhjNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBajJuN0hyNEl2bkRLcklCNjZob0R1dkNWWGd0ZGVHMTd4Z1N6VkQzVHU2VlRxakNDZFpXV0tBUg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JyTUU1V2IxaEVWRTE2VFZSQmVFNTZSVEpPUkdzd1RsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEdnNUNqZ3lWVzFzVW5Bek0zaHdXVzVQUjJWUmFrVlhSbmxwYUd0YWFtNXpMME5CTDBaSll6ZzBNMnRxTmpWMWMyMVhTMnBuY0dOUlFuSlNkU3RVTkdZNWNGY0tUbWRoU25OemFVMXZXRmx4WjBjMFMyeHRibGxrTm5ZeE0xUXJPVkZNWjNsc1lqVnZVVzlNV1V4eWVuVktZMFZRYldObmNYQlBRelpQSzNWUUwyODFSUXBDTkRKbU1IWkZiVmh2VjBSVWRub3lVekZzYVdKclNtSTVNRWMyVUdaWWEycDBkMUJ5Y0RWWU16UkpjQ3R0YjFwbFVEQlhSbEV6ZGl0MlVHTTNTSEpaQ2tZeWFtZENPRGRCUmt3Mk1qTkhSVlpWWmtVNUt6ZG9abEJYU0hSTVpWQnlZalpUTkVVelJXa3dOeTl1TmpkR05EaDNSM0ZEYlhsMEwzUmFOeTgwVW04S1FWSmFUMDV6WlZselFVdFNVRFV6U0ZwbGNtVldibEU1ZVVob1VuTlhkekpHYTFBMU5rdGhjakZZUWxWVllrMUVaMDVOWmlzeVN6Qk9RblI1TTI0NU1BcG9TbWxKYUhsTFpqSXhXVlI1TDJ4bkszVk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktOV0YxU1VsTFp6UnRLMnhJTDNScFVUTnROVU4wVTFKVVVVZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJPR2hHUldGU01tOTVSM1owT0hwQ1FtSmhNMnRqZEhoSWN5OXVUbXRtTUhGTGNTdHBhSEowZERKeFEwUkdaakZvTkFwdmFXcG9NRWxVTTFwVlJ6QjRTMlZaWWtGdVRXVk9VRVJGVld0bVRGSnFZbk50U0ZweVdGSllSVU4wWmxwamRIQlJlWEpKVW14Wk4wVlhaa2hvVUhWVkNtVm1hV1ZMVVZoNWFHSkJkWFJ5U2tGaVQxVjJSa2xtVGpOR2N6aHBiek5QTTFSbk9ISTNlRzEyVWpaYVFuTTNkekl6UkVwRlptUXhZbTFMYTBKMFIyOEtSQ3RoWWxrd1ZqVXZVWGRuWm5aTVFrNVdkR2R5VFdJMlJXUklNRWt4VEdkc016UnBhVE50TlUxMFlWaEhhV1ZRVm5OeE9GUTBkMDFrUjJWMU5teFZUQW8zT1RSNVQwNU5TRXhpV0Roc1NtOWpNRU42SzJaa2RGZHJlVVZVZEV0NFRubDJiVFJZUlU1QlFsWkRhR1ZhZVZaYVJVZFNRbWhQTVhNclNFOVZRVTB6Q21aM01GaDNMMnBqTTBjMk5HVlVVV1ZhVDI5M2RGaEZibXR1WTI1aWVrUnZXVEJ4VXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzhhMWY2YjU4LTI1ZWQtNGY4Zi1iNzlhLTYwNDFkYTlhMmVlZS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiTDJEdzNwZXZxRXlNcGhnc0N0dlExNVd0bm81U0ZLSHVLbXpmanM1b0QxY1VveVpqMU53dHRYYQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2620" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:13 GMT + - Wed, 18 Oct 2023 16:51:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4998,7 +5262,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a5b2172-7a71-4521-8cfd-93650f319d13 + - 56fae452-e8c8-4e87-9d37-684a66e7b379 status: 200 OK code: 200 duration: "" @@ -5009,19 +5273,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"multicloud-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:50:58.570529Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "413" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:13 GMT + - Wed, 18 Oct 2023 16:51:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5031,7 +5295,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad25bdae-41ae-4f96-9c81-b7e694c5e0ca + - e7f15986-58de-45a7-98c2-aa13573f4c8e status: 200 OK code: 200 duration: "" @@ -5042,19 +5306,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/kubeconfig method: GET response: - body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"multicloud-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JyTUU1V2IxaEVWRTE2VFZSQmVFNTZSVEpPUkdzd1RsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEdnNUNqZ3lWVzFzVW5Bek0zaHdXVzVQUjJWUmFrVlhSbmxwYUd0YWFtNXpMME5CTDBaSll6ZzBNMnRxTmpWMWMyMVhTMnBuY0dOUlFuSlNkU3RVTkdZNWNGY0tUbWRoU25OemFVMXZXRmx4WjBjMFMyeHRibGxrTm5ZeE0xUXJPVkZNWjNsc1lqVnZVVzlNV1V4eWVuVktZMFZRYldObmNYQlBRelpQSzNWUUwyODFSUXBDTkRKbU1IWkZiVmh2VjBSVWRub3lVekZzYVdKclNtSTVNRWMyVUdaWWEycDBkMUJ5Y0RWWU16UkpjQ3R0YjFwbFVEQlhSbEV6ZGl0MlVHTTNTSEpaQ2tZeWFtZENPRGRCUmt3Mk1qTkhSVlpWWmtVNUt6ZG9abEJYU0hSTVpWQnlZalpUTkVVelJXa3dOeTl1TmpkR05EaDNSM0ZEYlhsMEwzUmFOeTgwVW04S1FWSmFUMDV6WlZselFVdFNVRFV6U0ZwbGNtVldibEU1ZVVob1VuTlhkekpHYTFBMU5rdGhjakZZUWxWVllrMUVaMDVOWmlzeVN6Qk9RblI1TTI0NU1BcG9TbWxKYUhsTFpqSXhXVlI1TDJ4bkszVk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktOV0YxU1VsTFp6UnRLMnhJTDNScFVUTnROVU4wVTFKVVVVZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJPR2hHUldGU01tOTVSM1owT0hwQ1FtSmhNMnRqZEhoSWN5OXVUbXRtTUhGTGNTdHBhSEowZERKeFEwUkdaakZvTkFwdmFXcG9NRWxVTTFwVlJ6QjRTMlZaWWtGdVRXVk9VRVJGVld0bVRGSnFZbk50U0ZweVdGSllSVU4wWmxwamRIQlJlWEpKVW14Wk4wVlhaa2hvVUhWVkNtVm1hV1ZMVVZoNWFHSkJkWFJ5U2tGaVQxVjJSa2xtVGpOR2N6aHBiek5QTTFSbk9ISTNlRzEyVWpaYVFuTTNkekl6UkVwRlptUXhZbTFMYTBKMFIyOEtSQ3RoWWxrd1ZqVXZVWGRuWm5aTVFrNVdkR2R5VFdJMlJXUklNRWt4VEdkc016UnBhVE50TlUxMFlWaEhhV1ZRVm5OeE9GUTBkMDFrUjJWMU5teFZUQW8zT1RSNVQwNU5TRXhpV0Roc1NtOWpNRU42SzJaa2RGZHJlVVZVZEV0NFRubDJiVFJZUlU1QlFsWkRhR1ZhZVZaYVJVZFNRbWhQTVhNclNFOVZRVTB6Q21aM01GaDNMMnBqTTBjMk5HVlVVV1ZhVDI5M2RGaEZibXR1WTI1aWVrUnZXVEJ4VXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzhhMWY2YjU4LTI1ZWQtNGY4Zi1iNzlhLTYwNDFkYTlhMmVlZS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiTDJEdzNwZXZxRXlNcGhnc0N0dlExNVd0bm81U0ZLSHVLbXpmanM1b0QxY1VveVpqMU53dHRYYQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "413" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:13 GMT + - Wed, 18 Oct 2023 16:51:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5064,7 +5328,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d8b6e38-47e9-4091-aee9-90e498b14a8d + - 449d7a15-2ac6-4d35-8443-244c6a03b08c status: 200 OK code: 200 duration: "" @@ -5075,19 +5339,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/available-types method: GET response: body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"multicloud-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}' headers: Content-Length: - - "413" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:13 GMT + - Wed, 18 Oct 2023 16:51:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5097,7 +5361,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a50d0bba-0109-429f-a7fb-06b34cdbe412 + - 3944738c-e87e-4a1f-a107-8d8ea069d935 status: 200 OK code: 200 duration: "" @@ -5108,19 +5372,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/available-types method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:21:56.777901Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-09-01T16:23:09.159390Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"multicloud-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}' headers: Content-Length: - - "1434" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:13 GMT + - Wed, 18 Oct 2023 16:51:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5130,32 +5394,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e9d40b8-1224-4fe2-a5a1-283778d098bc + - 247f3002-0ef6-4f9a-97e2-3e378e3aac14 status: 200 OK code: 200 duration: "" - request: - body: '{"type":"multicloud-dedicated-8"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/set-type - method: POST + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/available-types + method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854380Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446419Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":8000000000,"name":"multicloud-dedicated-8","resiliency":"high_availability","sla":99.5},{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":2}' headers: Content-Length: - - "1443" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:13 GMT + - Wed, 18 Oct 2023 16:51:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5165,7 +5427,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02c8db85-a380-4555-b65d-23c855967e87 + - 9028a225-fe84-435d-898e-c4893e2b21bb status: 200 OK code: 200 duration: "" @@ -5176,19 +5438,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:49:44.298737Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-4","updated_at":"2023-10-18T16:50:58.570529Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:14 GMT + - Wed, 18 Oct 2023 16:51:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5198,30 +5460,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 386e9dfd-f529-4c04-95c9-a1e7be7c763b + - 0df0443a-e3d0-4454-ac51-e62b4b4285c6 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"type":"multicloud-dedicated-8"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 - method: GET + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/set-type + method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585080Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231660631Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1488" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:19 GMT + - Wed, 18 Oct 2023 16:51:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5231,7 +5495,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2550f17a-3b67-4432-ba35-9ee877f9c43d + - b56ee086-71ee-4015-b663-2868bbf5604b status: 200 OK code: 200 duration: "" @@ -5242,19 +5506,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:24 GMT + - Wed, 18 Oct 2023 16:51:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5264,7 +5528,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 792c8896-a2a6-4190-b851-6f50277de29c + - 1561fa51-eeb1-448a-8b85-dfda9a71a886 status: 200 OK code: 200 duration: "" @@ -5275,19 +5539,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:29 GMT + - Wed, 18 Oct 2023 16:51:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5297,7 +5561,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0826fc3a-2d5f-41ae-b4c3-4b525e0945a9 + - 921e575a-9b7f-4e97-a004-04f3fd96d685 status: 200 OK code: 200 duration: "" @@ -5308,19 +5572,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:34 GMT + - Wed, 18 Oct 2023 16:51:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5330,7 +5594,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4b84081-cf79-4179-bee1-fb43a545078a + - a51bdc20-2c9c-447a-8bbb-19013e854af2 status: 200 OK code: 200 duration: "" @@ -5341,19 +5605,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:39 GMT + - Wed, 18 Oct 2023 16:51:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5363,7 +5627,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14c6b778-ec74-4464-84e2-dd518648d4fe + - b35ca807-5683-4f66-b6b9-e090cca3a8f9 status: 200 OK code: 200 duration: "" @@ -5374,19 +5638,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:44 GMT + - Wed, 18 Oct 2023 16:51:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5396,7 +5660,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b5ddad4-7645-414d-9b43-c76cb9133ada + - 1736414a-aeb1-4216-a227-a3849dc75854 status: 200 OK code: 200 duration: "" @@ -5407,19 +5671,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:49 GMT + - Wed, 18 Oct 2023 16:51:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5429,7 +5693,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87eef120-ac91-451c-bdab-72830edaa266 + - 8c9ebd24-5f6a-4aa7-89ba-0e2df061cf86 status: 200 OK code: 200 duration: "" @@ -5440,19 +5704,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:54 GMT + - Wed, 18 Oct 2023 16:51:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5462,7 +5726,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a3bdfbe-c7ce-4ff1-9a8f-a0da199d27c6 + - 044afcff-4b02-4c1a-84e6-42d0d5841012 status: 200 OK code: 200 duration: "" @@ -5473,19 +5737,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:23:59 GMT + - Wed, 18 Oct 2023 16:51:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5495,7 +5759,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83f700d8-897b-4901-950c-ebfe742b1961 + - f227532f-90ef-4335-bb00-bd3a3ee4673c status: 200 OK code: 200 duration: "" @@ -5506,19 +5770,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:04 GMT + - Wed, 18 Oct 2023 16:51:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5528,7 +5792,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d85b7490-7a81-4be1-b605-d1673d43f9bf + - 329c61c7-1781-43e8-a1dd-d0a3d6cda114 status: 200 OK code: 200 duration: "" @@ -5539,19 +5803,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:09 GMT + - Wed, 18 Oct 2023 16:51:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5561,7 +5825,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61d692cb-341c-4633-9b02-8c4d8af2b19f + - a8ff20d1-2044-4e79-bcaa-5b79cb6ccbdf status: 200 OK code: 200 duration: "" @@ -5572,19 +5836,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:14 GMT + - Wed, 18 Oct 2023 16:51:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5594,7 +5858,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf227115-b22f-4975-afdc-1d1fefccf349 + - be2aa18d-f6a0-4cc5-9498-09349365ce67 status: 200 OK code: 200 duration: "" @@ -5605,19 +5869,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:19 GMT + - Wed, 18 Oct 2023 16:51:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5627,7 +5891,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae6c9e28-0fa3-4e17-b126-bf57e06c57e3 + - e18d61c7-2b6d-47c5-81dd-f3c649d60a1a status: 200 OK code: 200 duration: "" @@ -5638,19 +5902,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:24 GMT + - Wed, 18 Oct 2023 16:52:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5660,7 +5924,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30faf30a-e707-4c93-9c87-608224915ed8 + - 65688c50-92d0-4fb2-9100-970b25f22cc8 status: 200 OK code: 200 duration: "" @@ -5671,19 +5935,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:29 GMT + - Wed, 18 Oct 2023 16:52:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5693,7 +5957,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bea10cc-839c-4519-ae23-2f025bca4075 + - b0e2509a-c234-4cc0-98e6-12da423f83db status: 200 OK code: 200 duration: "" @@ -5704,19 +5968,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:34 GMT + - Wed, 18 Oct 2023 16:52:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5726,7 +5990,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57506b2d-5856-4de1-817b-649a7f948f2a + - e81acb11-1ffe-40d2-a9f1-22f9ade08099 status: 200 OK code: 200 duration: "" @@ -5737,19 +6001,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:23:13.939446Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:51:02.231661Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:39 GMT + - Wed, 18 Oct 2023 16:52:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5759,7 +6023,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c0a789b-93bb-49fe-a935-7f1200304c40 + - ce615e0f-d052-4074-95c2-cfef3fecdffd status: 200 OK code: 200 duration: "" @@ -5770,19 +6034,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:24:43.311953Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:22.667211Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:44 GMT + - Wed, 18 Oct 2023 16:52:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5792,7 +6056,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67d8ec49-e307-4f83-a51c-653a6daa462a + - 02ffb550-23a5-434c-9a0b-e509cf9b6a6f status: 200 OK code: 200 duration: "" @@ -5805,19 +6069,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: PATCH response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:24:44.834613823Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:23.181422618Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1440" + - "1485" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:44 GMT + - Wed, 18 Oct 2023 16:52:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5827,7 +6091,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b493d33a-e49f-4749-8275-0e1eb7885ee8 + - ccd775eb-61b0-4242-9911-da23c1ca8bfa status: 200 OK code: 200 duration: "" @@ -5838,19 +6102,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:24:44.834614Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:23.181423Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:44 GMT + - Wed, 18 Oct 2023 16:52:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5860,7 +6124,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59207fdb-0c99-494f-a608-2c7ad6af047c + - 2aebcbb6-a0e1-49cd-9ffa-b3caaced6c5d status: 200 OK code: 200 duration: "" @@ -5871,19 +6135,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:24:44.834614Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:23.181423Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:49 GMT + - Wed, 18 Oct 2023 16:52:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5893,7 +6157,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5df7060-687b-4609-a4a5-622e5d330229 + - 8f124d30-55c2-40ee-8f74-97da9b672153 status: 200 OK code: 200 duration: "" @@ -5904,19 +6168,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:24:44.834614Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:23.181423Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:24:54 GMT + - Wed, 18 Oct 2023 16:52:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5926,7 +6190,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 301a299b-0590-4b70-a342-573f43acb02b + - d48b3c8e-8e03-41cc-987d-06490a42ec03 status: 200 OK code: 200 duration: "" @@ -5937,19 +6201,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:24:44.834614Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:23.181423Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:00 GMT + - Wed, 18 Oct 2023 16:52:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5959,7 +6223,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 404e82ff-3137-4c03-a4d6-a502752bc688 + - 7d57a140-a920-43af-a09a-42a9eb0a46dd status: 200 OK code: 200 duration: "" @@ -5970,19 +6234,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:24:44.834614Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:23.181423Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:05 GMT + - Wed, 18 Oct 2023 16:52:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5992,7 +6256,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f553dc8-38c2-4829-a1ed-3faa8fc3039d + - 23f9a36d-b4df-4c50-b6af-abca2a1ce8ba status: 200 OK code: 200 duration: "" @@ -6003,19 +6267,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:24:44.834614Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:23.181423Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:10 GMT + - Wed, 18 Oct 2023 16:52:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6025,7 +6289,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d07eebaa-fb41-40c1-abd9-ff006b3a144c + - 3864f5e5-4605-4349-85c6-040bf506e367 status: 200 OK code: 200 duration: "" @@ -6036,19 +6300,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:24:44.834614Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"updating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:23.181423Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:15 GMT + - Wed, 18 Oct 2023 16:52:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6058,7 +6322,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11991bf6-3f60-44c7-a9bb-d56b9834c46f + - 682104f6-de03-4a24-a378-162be6762c3a status: 200 OK code: 200 duration: "" @@ -6069,19 +6333,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:25:19.128354Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:55.548103Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:20 GMT + - Wed, 18 Oct 2023 16:52:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6091,7 +6355,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 885ed622-b611-4ad9-856a-2f1b5cfdc823 + - 5eee1011-ed09-43dc-879f-bf820141342f status: 200 OK code: 200 duration: "" @@ -6102,19 +6366,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:25:19.128354Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:55.548103Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:20 GMT + - Wed, 18 Oct 2023 16:52:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6124,7 +6388,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c68c36f-17a9-47d9-b513-6ac5a9b18990 + - 57d52c7b-1157-4f2b-b779-5da6ce4890a4 status: 200 OK code: 200 duration: "" @@ -6135,19 +6399,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEZsaENqTnBVMjFuVW05RVlsbFJObk5SVlZCbWNFSlZOekl6WlZCM01XRXdhWEZMYUZkcVlVMU9hMGt2V1RRMldsUkZlRFUwYkhsR1oyYzRjbWRNWWtoWGFHNEtNR2w2TUVwaVEwSkZRVkJoVEZkdWJuVlNSR2RTVkRoU2NsbzRSa1pNTTJ0alR6SjBLek4xTlZkUU4wNUVlVkpxYVRGa1ZUSlFabHBxYms4NE5ETlFhZ3BXTVRSMmNsUlZPVmN4VkdjeGFIZHBSazlVYUhSRFlqQmtiVUYzZWxNNGVYbHRNVEZEU3pBdk0wcElkbU5sVWpacFRFaFpSMnNyYjJodlRVaGpiR0k0Q2pWRlZIaFdlblJPYUZwblkyeG1WR3RTU0haS2NrNVpNV05USzFWM1J6TnhhSGxUU2tOcVpXbE1RWGMyWVdzNE5HWjJLMm9yVFZjME5HTjBZbVp5VWxZS1pHMVdkVUZWVjB0RVZ6VkVNRTVvTkVONE1XMXVabWQyY214Q1pHcElXSE5rVHpacFVYSkxUMGgwVEdOelJXeDJlRmxaVnpsck5rMUtWMk5QY0RBMlNBcFNMMUkyYXpkRFl6WXdVVkZxYmxwUFltSk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9hVkJQU1RadE5taE5SV1JyVFhKNU5tcG5Xako2Y25wcFUwbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNiaXRwYkZsMVUxQkdaWFptTXl0NWREUkdUSEJEZGpKU2FUTXJTRVpJWVhwU2VVMTZkMHBCWlVKYVJFSkxkRTVKTXdvMVZuWnpha2NyYTBSa05pdFZSbFpMWVdkUk9ERXJlVEpVZG5VeGEwdENVMjF4UW1aTlluQlphekZhWjNJckswNUJTVGRuTWxOYVlrRndXRzlhY0VaRkNubHJSVzVHVDJKcU0wVllPQ3QzTm1wMGNGUldlR0l5Tm5aWmFqSmtVbEZEYzNWUE4zZHZZelZEVWxoV1EzUnJWRnB1YWxoaVNtSTFSblZ2VW5OWVQyb0tWR3RzUjB3MmJHNDFhVU4xWW5acEt6RkZjVkExVW5acE1WWnNZM3BEZDA1d1JHd3dlRXRKYnpjM2JtaG9ZVUpHYUhOalpYTTNXbXR1UW13M1kxSjRRUXBKZWxacVVHSjZUSEJZTW5oa2EydzJaMnd3VEVrNVNFWXpWbWRrZUc5UE5HVnBPSFZNTTFSMlRFTkRTa3AwVVRWMkszVTFaR05MUnpoT09IUm9ObE5wQ2s1cGJqQldhWE4yVVVoUVduVTNObk5oWXpabmNHMHpPVUZYWm1WdlRuZzJWRGRuVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2FjOThhYWU5LTU2M2ItNDMyOC05OGRmLTRkMWE3N2M1ODhjNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBajJuN0hyNEl2bkRLcklCNjZob0R1dkNWWGd0ZGVHMTd4Z1N6VkQzVHU2VlRxakNDZFpXV0tBUg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JyTUU1V2IxaEVWRTE2VFZSQmVFNTZSVEpPUkdzd1RsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEdnNUNqZ3lWVzFzVW5Bek0zaHdXVzVQUjJWUmFrVlhSbmxwYUd0YWFtNXpMME5CTDBaSll6ZzBNMnRxTmpWMWMyMVhTMnBuY0dOUlFuSlNkU3RVTkdZNWNGY0tUbWRoU25OemFVMXZXRmx4WjBjMFMyeHRibGxrTm5ZeE0xUXJPVkZNWjNsc1lqVnZVVzlNV1V4eWVuVktZMFZRYldObmNYQlBRelpQSzNWUUwyODFSUXBDTkRKbU1IWkZiVmh2VjBSVWRub3lVekZzYVdKclNtSTVNRWMyVUdaWWEycDBkMUJ5Y0RWWU16UkpjQ3R0YjFwbFVEQlhSbEV6ZGl0MlVHTTNTSEpaQ2tZeWFtZENPRGRCUmt3Mk1qTkhSVlpWWmtVNUt6ZG9abEJYU0hSTVpWQnlZalpUTkVVelJXa3dOeTl1TmpkR05EaDNSM0ZEYlhsMEwzUmFOeTgwVW04S1FWSmFUMDV6WlZselFVdFNVRFV6U0ZwbGNtVldibEU1ZVVob1VuTlhkekpHYTFBMU5rdGhjakZZUWxWVllrMUVaMDVOWmlzeVN6Qk9RblI1TTI0NU1BcG9TbWxKYUhsTFpqSXhXVlI1TDJ4bkszVk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktOV0YxU1VsTFp6UnRLMnhJTDNScFVUTnROVU4wVTFKVVVVZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJPR2hHUldGU01tOTVSM1owT0hwQ1FtSmhNMnRqZEhoSWN5OXVUbXRtTUhGTGNTdHBhSEowZERKeFEwUkdaakZvTkFwdmFXcG9NRWxVTTFwVlJ6QjRTMlZaWWtGdVRXVk9VRVJGVld0bVRGSnFZbk50U0ZweVdGSllSVU4wWmxwamRIQlJlWEpKVW14Wk4wVlhaa2hvVUhWVkNtVm1hV1ZMVVZoNWFHSkJkWFJ5U2tGaVQxVjJSa2xtVGpOR2N6aHBiek5QTTFSbk9ISTNlRzEyVWpaYVFuTTNkekl6UkVwRlptUXhZbTFMYTBKMFIyOEtSQ3RoWWxrd1ZqVXZVWGRuWm5aTVFrNVdkR2R5VFdJMlJXUklNRWt4VEdkc016UnBhVE50TlUxMFlWaEhhV1ZRVm5OeE9GUTBkMDFrUjJWMU5teFZUQW8zT1RSNVQwNU5TRXhpV0Roc1NtOWpNRU42SzJaa2RGZHJlVVZVZEV0NFRubDJiVFJZUlU1QlFsWkRhR1ZhZVZaYVJVZFNRbWhQTVhNclNFOVZRVTB6Q21aM01GaDNMMnBqTTBjMk5HVlVVV1ZhVDI5M2RGaEZibXR1WTI1aWVrUnZXVEJ4VXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzhhMWY2YjU4LTI1ZWQtNGY4Zi1iNzlhLTYwNDFkYTlhMmVlZS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiTDJEdzNwZXZxRXlNcGhnc0N0dlExNVd0bm81U0ZLSHVLbXpmanM1b0QxY1VveVpqMU53dHRYYQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2620" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:20 GMT + - Wed, 18 Oct 2023 16:52:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6157,7 +6421,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 401725b6-9fa4-44e9-b6e5-dfa4f21ea899 + - d14264ea-765d-47ee-b7b8-e630a15428ec status: 200 OK code: 200 duration: "" @@ -6168,19 +6432,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:25:19.128354Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:55.548103Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:20 GMT + - Wed, 18 Oct 2023 16:52:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6190,7 +6454,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd6b32b6-5d68-400d-886f-495690d0c68a + - b6009bec-19dc-445c-8e3f-129d572cc977 status: 200 OK code: 200 duration: "" @@ -6201,19 +6465,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:25:19.128354Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:55.548103Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:20 GMT + - Wed, 18 Oct 2023 16:52:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6223,7 +6487,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 420ddb46-92c5-470c-8b97-85c3c70e89a9 + - dba7f92d-6c82-40b5-b38f-8f1aaef9a02d status: 200 OK code: 200 duration: "" @@ -6234,19 +6498,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEZsaENqTnBVMjFuVW05RVlsbFJObk5SVlZCbWNFSlZOekl6WlZCM01XRXdhWEZMYUZkcVlVMU9hMGt2V1RRMldsUkZlRFUwYkhsR1oyYzRjbWRNWWtoWGFHNEtNR2w2TUVwaVEwSkZRVkJoVEZkdWJuVlNSR2RTVkRoU2NsbzRSa1pNTTJ0alR6SjBLek4xTlZkUU4wNUVlVkpxYVRGa1ZUSlFabHBxYms4NE5ETlFhZ3BXTVRSMmNsUlZPVmN4VkdjeGFIZHBSazlVYUhSRFlqQmtiVUYzZWxNNGVYbHRNVEZEU3pBdk0wcElkbU5sVWpacFRFaFpSMnNyYjJodlRVaGpiR0k0Q2pWRlZIaFdlblJPYUZwblkyeG1WR3RTU0haS2NrNVpNV05USzFWM1J6TnhhSGxUU2tOcVpXbE1RWGMyWVdzNE5HWjJLMm9yVFZjME5HTjBZbVp5VWxZS1pHMVdkVUZWVjB0RVZ6VkVNRTVvTkVONE1XMXVabWQyY214Q1pHcElXSE5rVHpacFVYSkxUMGgwVEdOelJXeDJlRmxaVnpsck5rMUtWMk5QY0RBMlNBcFNMMUkyYXpkRFl6WXdVVkZxYmxwUFltSk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9hVkJQU1RadE5taE5SV1JyVFhKNU5tcG5Xako2Y25wcFUwbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNiaXRwYkZsMVUxQkdaWFptTXl0NWREUkdUSEJEZGpKU2FUTXJTRVpJWVhwU2VVMTZkMHBCWlVKYVJFSkxkRTVKTXdvMVZuWnpha2NyYTBSa05pdFZSbFpMWVdkUk9ERXJlVEpVZG5VeGEwdENVMjF4UW1aTlluQlphekZhWjNJckswNUJTVGRuTWxOYVlrRndXRzlhY0VaRkNubHJSVzVHVDJKcU0wVllPQ3QzTm1wMGNGUldlR0l5Tm5aWmFqSmtVbEZEYzNWUE4zZHZZelZEVWxoV1EzUnJWRnB1YWxoaVNtSTFSblZ2VW5OWVQyb0tWR3RzUjB3MmJHNDFhVU4xWW5acEt6RkZjVkExVW5acE1WWnNZM3BEZDA1d1JHd3dlRXRKYnpjM2JtaG9ZVUpHYUhOalpYTTNXbXR1UW13M1kxSjRRUXBKZWxacVVHSjZUSEJZTW5oa2EydzJaMnd3VEVrNVNFWXpWbWRrZUc5UE5HVnBPSFZNTTFSMlRFTkRTa3AwVVRWMkszVTFaR05MUnpoT09IUm9ObE5wQ2s1cGJqQldhWE4yVVVoUVduVTNObk5oWXpabmNHMHpPVUZYWm1WdlRuZzJWRGRuVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2FjOThhYWU5LTU2M2ItNDMyOC05OGRmLTRkMWE3N2M1ODhjNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBajJuN0hyNEl2bkRLcklCNjZob0R1dkNWWGd0ZGVHMTd4Z1N6VkQzVHU2VlRxakNDZFpXV0tBUg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JyTUU1V2IxaEVWRTE2VFZSQmVFNTZSVEpPUkdzd1RsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEdnNUNqZ3lWVzFzVW5Bek0zaHdXVzVQUjJWUmFrVlhSbmxwYUd0YWFtNXpMME5CTDBaSll6ZzBNMnRxTmpWMWMyMVhTMnBuY0dOUlFuSlNkU3RVTkdZNWNGY0tUbWRoU25OemFVMXZXRmx4WjBjMFMyeHRibGxrTm5ZeE0xUXJPVkZNWjNsc1lqVnZVVzlNV1V4eWVuVktZMFZRYldObmNYQlBRelpQSzNWUUwyODFSUXBDTkRKbU1IWkZiVmh2VjBSVWRub3lVekZzYVdKclNtSTVNRWMyVUdaWWEycDBkMUJ5Y0RWWU16UkpjQ3R0YjFwbFVEQlhSbEV6ZGl0MlVHTTNTSEpaQ2tZeWFtZENPRGRCUmt3Mk1qTkhSVlpWWmtVNUt6ZG9abEJYU0hSTVpWQnlZalpUTkVVelJXa3dOeTl1TmpkR05EaDNSM0ZEYlhsMEwzUmFOeTgwVW04S1FWSmFUMDV6WlZselFVdFNVRFV6U0ZwbGNtVldibEU1ZVVob1VuTlhkekpHYTFBMU5rdGhjakZZUWxWVllrMUVaMDVOWmlzeVN6Qk9RblI1TTI0NU1BcG9TbWxKYUhsTFpqSXhXVlI1TDJ4bkszVk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktOV0YxU1VsTFp6UnRLMnhJTDNScFVUTnROVU4wVTFKVVVVZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJPR2hHUldGU01tOTVSM1owT0hwQ1FtSmhNMnRqZEhoSWN5OXVUbXRtTUhGTGNTdHBhSEowZERKeFEwUkdaakZvTkFwdmFXcG9NRWxVTTFwVlJ6QjRTMlZaWWtGdVRXVk9VRVJGVld0bVRGSnFZbk50U0ZweVdGSllSVU4wWmxwamRIQlJlWEpKVW14Wk4wVlhaa2hvVUhWVkNtVm1hV1ZMVVZoNWFHSkJkWFJ5U2tGaVQxVjJSa2xtVGpOR2N6aHBiek5QTTFSbk9ISTNlRzEyVWpaYVFuTTNkekl6UkVwRlptUXhZbTFMYTBKMFIyOEtSQ3RoWWxrd1ZqVXZVWGRuWm5aTVFrNVdkR2R5VFdJMlJXUklNRWt4VEdkc016UnBhVE50TlUxMFlWaEhhV1ZRVm5OeE9GUTBkMDFrUjJWMU5teFZUQW8zT1RSNVQwNU5TRXhpV0Roc1NtOWpNRU42SzJaa2RGZHJlVVZVZEV0NFRubDJiVFJZUlU1QlFsWkRhR1ZhZVZaYVJVZFNRbWhQTVhNclNFOVZRVTB6Q21aM01GaDNMMnBqTTBjMk5HVlVVV1ZhVDI5M2RGaEZibXR1WTI1aWVrUnZXVEJ4VXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzhhMWY2YjU4LTI1ZWQtNGY4Zi1iNzlhLTYwNDFkYTlhMmVlZS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiTDJEdzNwZXZxRXlNcGhnc0N0dlExNVd0bm81U0ZLSHVLbXpmanM1b0QxY1VveVpqMU53dHRYYQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2620" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:20 GMT + - Wed, 18 Oct 2023 16:52:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6256,7 +6520,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 992c130b-6d3a-48c5-95f3-9b08c8912a01 + - a7b0aea5-7970-466d-b4d1-e0aa2e62f979 status: 200 OK code: 200 duration: "" @@ -6267,19 +6531,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:25:19.128354Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:52:55.548103Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:20 GMT + - Wed, 18 Oct 2023 16:52:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6289,7 +6553,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6c78177-7236-4d6a-b07b-e4c57dd6851d + - b8669097-8d86-4159-851f-557c02b53e5a status: 200 OK code: 200 duration: "" @@ -6300,19 +6564,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BGTVU5R2IxaEVWRTE2VFVSbmVrMVVSVEpOYWtVeFQwWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEZsaENqTnBVMjFuVW05RVlsbFJObk5SVlZCbWNFSlZOekl6WlZCM01XRXdhWEZMYUZkcVlVMU9hMGt2V1RRMldsUkZlRFUwYkhsR1oyYzRjbWRNWWtoWGFHNEtNR2w2TUVwaVEwSkZRVkJoVEZkdWJuVlNSR2RTVkRoU2NsbzRSa1pNTTJ0alR6SjBLek4xTlZkUU4wNUVlVkpxYVRGa1ZUSlFabHBxYms4NE5ETlFhZ3BXTVRSMmNsUlZPVmN4VkdjeGFIZHBSazlVYUhSRFlqQmtiVUYzZWxNNGVYbHRNVEZEU3pBdk0wcElkbU5sVWpacFRFaFpSMnNyYjJodlRVaGpiR0k0Q2pWRlZIaFdlblJPYUZwblkyeG1WR3RTU0haS2NrNVpNV05USzFWM1J6TnhhSGxUU2tOcVpXbE1RWGMyWVdzNE5HWjJLMm9yVFZjME5HTjBZbVp5VWxZS1pHMVdkVUZWVjB0RVZ6VkVNRTVvTkVONE1XMXVabWQyY214Q1pHcElXSE5rVHpacFVYSkxUMGgwVEdOelJXeDJlRmxaVnpsck5rMUtWMk5QY0RBMlNBcFNMMUkyYXpkRFl6WXdVVkZxYmxwUFltSk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWk9hVkJQU1RadE5taE5SV1JyVFhKNU5tcG5Xako2Y25wcFUwbE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkNiaXRwYkZsMVUxQkdaWFptTXl0NWREUkdUSEJEZGpKU2FUTXJTRVpJWVhwU2VVMTZkMHBCWlVKYVJFSkxkRTVKTXdvMVZuWnpha2NyYTBSa05pdFZSbFpMWVdkUk9ERXJlVEpVZG5VeGEwdENVMjF4UW1aTlluQlphekZhWjNJckswNUJTVGRuTWxOYVlrRndXRzlhY0VaRkNubHJSVzVHVDJKcU0wVllPQ3QzTm1wMGNGUldlR0l5Tm5aWmFqSmtVbEZEYzNWUE4zZHZZelZEVWxoV1EzUnJWRnB1YWxoaVNtSTFSblZ2VW5OWVQyb0tWR3RzUjB3MmJHNDFhVU4xWW5acEt6RkZjVkExVW5acE1WWnNZM3BEZDA1d1JHd3dlRXRKYnpjM2JtaG9ZVUpHYUhOalpYTTNXbXR1UW13M1kxSjRRUXBKZWxacVVHSjZUSEJZTW5oa2EydzJaMnd3VEVrNVNFWXpWbWRrZUc5UE5HVnBPSFZNTTFSMlRFTkRTa3AwVVRWMkszVTFaR05MUnpoT09IUm9ObE5wQ2s1cGJqQldhWE4yVVVoUVduVTNObk5oWXpabmNHMHpPVUZYWm1WdlRuZzJWRGRuVkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2FjOThhYWU5LTU2M2ItNDMyOC05OGRmLTRkMWE3N2M1ODhjNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBBajJuN0hyNEl2bkRLcklCNjZob0R1dkNWWGd0ZGVHMTd4Z1N6VkQzVHU2VlRxakNDZFpXV0tBUg==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUa1JyTUU1V2IxaEVWRTE2VFZSQmVFNTZSVEpPUkdzd1RsWnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEdnNUNqZ3lWVzFzVW5Bek0zaHdXVzVQUjJWUmFrVlhSbmxwYUd0YWFtNXpMME5CTDBaSll6ZzBNMnRxTmpWMWMyMVhTMnBuY0dOUlFuSlNkU3RVTkdZNWNGY0tUbWRoU25OemFVMXZXRmx4WjBjMFMyeHRibGxrTm5ZeE0xUXJPVkZNWjNsc1lqVnZVVzlNV1V4eWVuVktZMFZRYldObmNYQlBRelpQSzNWUUwyODFSUXBDTkRKbU1IWkZiVmh2VjBSVWRub3lVekZzYVdKclNtSTVNRWMyVUdaWWEycDBkMUJ5Y0RWWU16UkpjQ3R0YjFwbFVEQlhSbEV6ZGl0MlVHTTNTSEpaQ2tZeWFtZENPRGRCUmt3Mk1qTkhSVlpWWmtVNUt6ZG9abEJYU0hSTVpWQnlZalpUTkVVelJXa3dOeTl1TmpkR05EaDNSM0ZEYlhsMEwzUmFOeTgwVW04S1FWSmFUMDV6WlZselFVdFNVRFV6U0ZwbGNtVldibEU1ZVVob1VuTlhkekpHYTFBMU5rdGhjakZZUWxWVllrMUVaMDVOWmlzeVN6Qk9RblI1TTI0NU1BcG9TbWxKYUhsTFpqSXhXVlI1TDJ4bkszVk5RMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWktOV0YxU1VsTFp6UnRLMnhJTDNScFVUTnROVU4wVTFKVVVVZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkJPR2hHUldGU01tOTVSM1owT0hwQ1FtSmhNMnRqZEhoSWN5OXVUbXRtTUhGTGNTdHBhSEowZERKeFEwUkdaakZvTkFwdmFXcG9NRWxVTTFwVlJ6QjRTMlZaWWtGdVRXVk9VRVJGVld0bVRGSnFZbk50U0ZweVdGSllSVU4wWmxwamRIQlJlWEpKVW14Wk4wVlhaa2hvVUhWVkNtVm1hV1ZMVVZoNWFHSkJkWFJ5U2tGaVQxVjJSa2xtVGpOR2N6aHBiek5QTTFSbk9ISTNlRzEyVWpaYVFuTTNkekl6UkVwRlptUXhZbTFMYTBKMFIyOEtSQ3RoWWxrd1ZqVXZVWGRuWm5aTVFrNVdkR2R5VFdJMlJXUklNRWt4VEdkc016UnBhVE50TlUxMFlWaEhhV1ZRVm5OeE9GUTBkMDFrUjJWMU5teFZUQW8zT1RSNVQwNU5TRXhpV0Roc1NtOWpNRU42SzJaa2RGZHJlVVZVZEV0NFRubDJiVFJZUlU1QlFsWkRhR1ZhZVZaYVJVZFNRbWhQTVhNclNFOVZRVTB6Q21aM01GaDNMMnBqTTBjMk5HVlVVV1ZhVDI5M2RGaEZibXR1WTI1aWVrUnZXVEJ4VXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzhhMWY2YjU4LTI1ZWQtNGY4Zi1iNzlhLTYwNDFkYTlhMmVlZS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBiTDJEdzNwZXZxRXlNcGhnc0N0dlExNVd0bm81U0ZLSHVLbXpmanM1b0QxY1VveVpqMU53dHRYYQ==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2620" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:20 GMT + - Wed, 18 Oct 2023 16:52:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6322,7 +6586,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b855e4e-d071-47e9-bc08-95172f46ed6a + - 2cce756c-e61b-4e63-8e9e-2aae82920286 status: 200 OK code: 200 duration: "" @@ -6333,19 +6597,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/available-types method: GET response: body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}' headers: Content-Length: - - "225" + - "233" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:20 GMT + - Wed, 18 Oct 2023 16:52:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6355,7 +6619,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbb98d66-5abe-4d93-ab16-62f5bc3b5c89 + - e5e46e15-d9eb-4b6e-86ce-781d88d53d24 status: 200 OK code: 200 duration: "" @@ -6366,19 +6630,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6/available-types + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee/available-types method: GET response: body: '{"cluster_types":[{"availability":"available","commitment_delay":"2592000s","dedicated":true,"max_nodes":500,"memory":16000000000,"name":"multicloud-dedicated-16","resiliency":"high_availability","sla":99.5}],"total_count":1}' headers: Content-Length: - - "225" + - "233" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:21 GMT + - Wed, 18 Oct 2023 16:52:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6388,7 +6652,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b6c9607-55c7-4e1d-a24f-68b4d797a7f1 + - 8eedbeeb-3f06-49c0-a844-5eeadfac425f status: 200 OK code: 200 duration: "" @@ -6399,19 +6663,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee?with_additional_resources=false method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:25:21.228707436Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:53:00.247874236Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1440" + - "1485" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:21 GMT + - Wed, 18 Oct 2023 16:53:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6421,7 +6685,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f02cd5b9-5417-4a02-a8e7-d00c4afb1890 + - 967d1677-2dc5-43eb-a782-e4ee8dbc7cf5 status: 200 OK code: 200 duration: "" @@ -6432,19 +6696,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:25:21.228707Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:53:00.247874Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:21 GMT + - Wed, 18 Oct 2023 16:53:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6454,7 +6718,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02466a5c-b03d-437a-aeb9-76c5119990a1 + - ac14fbe4-d0dd-484b-9fcc-1f3aaed00107 status: 200 OK code: 200 duration: "" @@ -6465,19 +6729,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://ac98aae9-563b-4328-98df-4d1a77c588c6.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-01T16:23:13.867854Z","created_at":"2023-09-01T16:21:56.777901Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.ac98aae9-563b-4328-98df-4d1a77c588c6.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"ac98aae9-563b-4328-98df-4d1a77c588c6","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-09-01T16:25:21.228707Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-11-17T16:51:02.154585Z","created_at":"2023-10-18T16:49:44.298737Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.8a1f6b58-25ed-4f8f-b79a-6041da9a2eee.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud-dedicated-8","updated_at":"2023-10-18T16:53:00.247874Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1437" + - "1482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:26 GMT + - Wed, 18 Oct 2023 16:53:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6487,7 +6751,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25906c37-7c09-4cb2-b7ab-aa75a2f9c749 + - 09545a54-2697-4de0-9cfa-162c7a834933 status: 200 OK code: 200 duration: "" @@ -6498,10 +6762,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/ac98aae9-563b-4328-98df-4d1a77c588c6 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/8a1f6b58-25ed-4f8f-b79a-6041da9a2eee method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"ac98aae9-563b-4328-98df-4d1a77c588c6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"8a1f6b58-25ed-4f8f-b79a-6041da9a2eee","type":"not_found"}' headers: Content-Length: - "128" @@ -6510,7 +6774,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:31 GMT + - Wed, 18 Oct 2023 16:53:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6520,12 +6784,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e5a7639-7e19-44c7-a07c-9009e7c67fc0 + - 1f48d0aa-8ed5-430e-aa55-0364dda96ad5 status: 404 Not Found code: 404 duration: "" - request: - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.0","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"multicloud","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.28.2","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":null,"feature_gates":null,"admission_plugins":null,"open_id_connect_config":null,"apiserver_cert_sans":null,"private_network_id":null}' form: {} headers: Content-Type: @@ -6536,16 +6800,49 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters method: POST response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518015726Z","created_at":"2023-09-01T16:25:31.518015726Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:25:31.524555175Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738055Z","created_at":"2023-10-18T16:53:10.838738055Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738208Z","upgrade_available":false,"version":"1.28.2"}' + headers: + Content-Length: + - "1479" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Oct 2023 16:53:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2fd15f9-3eac-4e5e-9235-63a5c615c80b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e + method: GET + response: + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1434" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:31 GMT + - Wed, 18 Oct 2023 16:53:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6555,7 +6852,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f439e801-a42c-40a8-a431-d97ef1d4fcc8 + - a6186a42-c473-4505-86a1-57cdc77f4795 status: 200 OK code: 200 duration: "" @@ -6566,19 +6863,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:25:31.524555Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:31 GMT + - Wed, 18 Oct 2023 16:53:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6588,7 +6885,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32217f4d-894c-4ec0-a57a-22a2f1d7fae0 + - 05f08169-ca5b-42b9-bd42-201eb546a761 status: 200 OK code: 200 duration: "" @@ -6599,19 +6896,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:25:31.524555Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:36 GMT + - Wed, 18 Oct 2023 16:53:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6621,7 +6918,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3bf3e52-c7d3-4886-87cb-a3373ceb359e + - ca04c130-a631-44ee-ab0f-8619d88577c0 status: 200 OK code: 200 duration: "" @@ -6632,19 +6929,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:25:31.524555Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:41 GMT + - Wed, 18 Oct 2023 16:53:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6654,7 +6951,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f205b83f-bbd4-4779-a6c4-51caaa006ae5 + - 2fd9216b-6bdb-42e5-8c18-ca369a52cd55 status: 200 OK code: 200 duration: "" @@ -6665,19 +6962,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:25:31.524555Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:46 GMT + - Wed, 18 Oct 2023 16:53:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6687,7 +6984,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3edc0449-bfdf-41b6-ad0d-c4d4dadc0d97 + - 9790b98e-d1bb-4740-9d0c-65a2a99c6e8c status: 200 OK code: 200 duration: "" @@ -6698,19 +6995,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:25:31.524555Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:51 GMT + - Wed, 18 Oct 2023 16:53:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6720,7 +7017,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ee4186b-e77b-40ab-a43d-b52b7dfdf1b2 + - 748b5f52-bfd9-4cb2-83fc-a5595f52e8e1 status: 200 OK code: 200 duration: "" @@ -6731,19 +7028,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:25:31.524555Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:25:56 GMT + - Wed, 18 Oct 2023 16:53:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6753,7 +7050,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbb2077c-9a98-46a2-8a2c-501541e72cec + - 9f68a22d-1ce5-48e8-9c98-2dfbaa72d35a status: 200 OK code: 200 duration: "" @@ -6764,19 +7061,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:25:31.524555Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:01 GMT + - Wed, 18 Oct 2023 16:53:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6786,7 +7083,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4785dc3-8b15-4953-ba4b-6449cd7a3f0d + - 96aa6012-3c5e-49f0-a76b-0fc363b5e60d status: 200 OK code: 200 duration: "" @@ -6797,19 +7094,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:25:31.524555Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:06 GMT + - Wed, 18 Oct 2023 16:53:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6819,7 +7116,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec8677df-a8b9-4cd6-a3ed-ceee80e904ab + - 06a751d2-aa69-4e29-9004-90002cf770f7 status: 200 OK code: 200 duration: "" @@ -6830,19 +7127,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:25:31.524555Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:11 GMT + - Wed, 18 Oct 2023 16:53:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6852,7 +7149,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b69aab4-fcc0-464f-86a0-23ad8150cf67 + - 8d6e3427-0c4f-4dec-bbac-7a13526b77e5 status: 200 OK code: 200 duration: "" @@ -6863,19 +7160,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:25:31.524555Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"creating","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:53:10.850738Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:17 GMT + - Wed, 18 Oct 2023 16:54:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6885,7 +7182,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 367fa9f8-2729-4a5a-bdec-81b89e9168ff + - a1eec862-b33d-4362-b28d-abc59398621f status: 200 OK code: 200 duration: "" @@ -6896,19 +7193,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:26:19.322788Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:54:02.715814Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1422" + - "1467" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:22 GMT + - Wed, 18 Oct 2023 16:54:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6918,7 +7215,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3e948fb-363e-4d41-b29a-e5be01eef5ca + - 5be0588a-90ac-4eb4-8ce3-96416e0080f0 status: 200 OK code: 200 duration: "" @@ -6929,19 +7226,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:26:19.322788Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:54:02.715814Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1422" + - "1467" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:22 GMT + - Wed, 18 Oct 2023 16:54:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6951,7 +7248,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1dea2233-9c23-4e6c-9d88-6fc2fb4a8919 + - 1ee85e3b-c407-426d-8f78-c1cb9670ae60 status: 200 OK code: 200 duration: "" @@ -6962,19 +7259,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BWZWsxc2IxaEVWRTE2VFVSbmVrMVVSVEpOYWxWNlRXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRsdENrRmtZa0Y2TkZOc1dWVXdSVVJFY1doaFVtTkRTbk01U1U4NVIwNUxlakJsYmxkMFNTc3hiSGg2Ylc4MGRrZFJTVlF3ZW10blRFdDNlR2hSTDJGSVoyTUtVM0UwUjNoVE5VeHRURkJKZDJGNllWZzFXa0ZvVWtaV2IxY3dTVkFyVVZoNE9UaDNhWGcwY1VFM0wxZ3hSelp4VFdaUUswVnZPUzh3TjBadE1HZG1Od3AyTUV4bU9WQnBhbFY1YkhCcllsZEpORTl6U2xaQlprWkZNR3hPVmsxM1owcG5Ra0pJWm1KS1JHaEJSM2hJYldwbGQzWlNVMGRMTldaVFNHdDJkMVZWQ2twbVdUaG5TRFVyU2tvelRWbDJWbVF3YWpOaFV6RnJielZRYzJaRFNHSk1SV2szUjJneE0zY3pkMFV4TVZCTFIybG5Selo1UWxjNGRGUkhTMWh3VGlzS2IyeHJTRVZRWVZCVVVHOVFZVnBXVUd4cEsydE5kREZwVTA1R09Ua3dRVVZIV0RsSk1XWlVjaXRIUzNoR2RtRXlVVEJzUTNoaE5UTjZTSGRYVFdGUFdBcENZMnhsTjJ4U1pWVXpPVmRGZUZoQlRqUlZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkJOelZSU21oT1RUVTBlRFpsTTBRNWJVMDNha2R1UjNsSWNIWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRXRkJqYnpCbGVWSjRSV04xYlhWQk9UUm5jVXhVVWlzd2NHMUlNa1lyUWxaMGNYTm5ka3g0WWtVdmFUbE1Sa1l3T0FveWVrRkJRM1pzTjJ0TU1rVkpjVkkxV21SUE1HMHJVbmQzWjNsNmVUaEphREJGTWt0TGF6TllRMUY2YVN0aVJEQjRkU3Q2WkZKek4xVXdlV2dyWnpBMENpOWFXWEJDWVZCb05FTkNTRzV2YVV4WmVVcHdVMXBhZVhkVU1GUlhXV2x5V1ZFcllrNDVWbVZOYWtveFpGY3lUbXROTVUxTGFXUmlSRGhuUlRSelFYQUtUV2hyVGpGTE1GVkRhQzgyT1hwSlJIbHRhbXg0ZW1semIxbFRZM1ZsSzFwc1dWRlpTRXBRZURWa2JFb3ZRVVJGU0haME9UZFZNVE5qV1ZBd1JHNWlXQXBFZEU1Q1NITnFhVWh3U1N0d1RIZG1kRzFRUzBWQlkzRllWMVJzVEZOMmIweHFRM28xVURRMlVqQXhZVEY1UlZNNWRFRlRlVlZ5YzBwR2RGaHVlak5OQ201TE4wbDBWVTVUWkd0b1VsWldOMU5OVlVoaFZFTkNURmhoWWtFMksySllhREptY1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzk3MGFjMDQzLTk5YWMtNGVlMC1iYmQzLTFhNDRkMjJjMDczMi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBsalNJeHJTcUQwRzJ4aWlaRGl1MGhKZmc1ak53Tld6bDVoYTlQeEp1MzBlUzhYRmhMUWN4c0szcw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUbFJOZUUxc2IxaEVWRTE2VFZSQmVFNTZSVEpPVkUxNFRXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEc0ckNqRjNVRWxEU0c1UmJFNWpWMlZhWms5M1pqZHZNeXRwTjJ0U2NIZEdhakJUTmxsd05uTlRlSEZ6YlhwNVFrazViVzlIYlhwMGFFWnBNV2hvZERrMk1IY0taek5UVWxkdlptTlBSVFJrV1RsTVZUZEZlSGhIZVdaT1pXTnRSR1lyT0dFMGVtaGxZMFJzU2xSa2NYZDVVRWswZDJoekszVXJXbEpaVldSQ1dVdGFUZ28zYkhvMFNERjVWbVl2T0hjM1VXeHVhbGhLWlU1RFoyOHZiazE1TTFKdWFEWm1WMHcyTVV0aFREaE5SVmM1ZVVwMlUxb3lSamhqVEhOdU5sQjVkVlZQQ25kWE1rOXFOMEUyTm5GWk56TkVNa05QTTFsaWRqSnZaVkZHZURaclNIWnVWU3MzV0N0UldIcDFjM0pSYmpGU2JHcDNSVWhEVW5wblkyVXhTbkZ3VWt3S1dYQlpPVWN5YlZwSmVrZFFTbFpqV0VkWk9YTnNSREkyYUZkeGRuZEVkR1U1WkZwR1NVWjVkMFkyVGtsWk9EUjZiblV4V0V0Tk5VaHJWblpzVFZSeVdBb3djWGREUm10UU9IazJPSGxpUlVGYVFtMUZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZNSGN5YlZKemFGQkxVSEZGZGtNdk9HUm5UbGhhWmtWa2VsaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRaRUpsUjBGQk0yeFhLMFU0UlN0NVN6aHRTbVZMYW5kQlRFRTJhVGd3Y2xOME1DczVaMXBNVFZCclpUUndVbTlzVVFwdVVuWXplWHAwYUdFMk5tTklZVVZNSzFGU05EWTBMMkZwUkZKelpHdEZTSFpyY1hWdlkzVjBabFJwWm5SRGFUbExNemRMZUhSMVJFSjJVVVEwVmxSUUNuQnpSMkpoWWxWS2NtRlZXazgyTjJKemFTOWFlakJRUlVSdGFHWkxkekpMT1RoeVRrOVhiVVJIT1hWSFRsQTNaV2gzYlVFeVExazNZazVOZDJwWmMwc0tOVEpOVEVSU0wyczNUazh3WVd0NVVtZDVUM0F5T0hwTlIzQlVUbWRPUkhSbmJqQlpjRFJ5WmtSV1dUWmhSWEJHYlVoYVVrcEphMVZFVWtRMFRrbHBad293YzNsVFFYazRhRlpNY0dScWNGTmpiakFyVW1vMmNXNDNNalZKV2tkNmJIVlNMMVoxYlhNeGQzbHpiR1ZHYVhaTVdrOWhLMUpxTUZJMGJHRnhUVGhpQ21GS1kybExjblZKTTNWa1Mxa3JOMkZvTUVsU2NsRnBUbkJ6VlVoTlMyMU5jMGRwUkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2RjMDc4NzYzLTQ5MDMtNDc2NS04ZjZmLWVlMzJkODFmODg5ZS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKYVJtOUpMNWJtUWJUQU1HenR4WjUwTDh3RmZka2NOSzBtZThCdzJiN0ZTWUxIU0QyUnhhbUVHRw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2620" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:22 GMT + - Wed, 18 Oct 2023 16:54:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6984,7 +7281,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2cdc1bd-c159-4f16-83bd-ce3dbfb0c62a + - 2523ae00-a34c-4ce9-94b7-d47be7fe0f32 status: 200 OK code: 200 duration: "" @@ -6995,19 +7292,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:26:19.322788Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:54:02.715814Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1422" + - "1467" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:22 GMT + - Wed, 18 Oct 2023 16:54:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7017,7 +7314,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a424759d-bb81-44a7-ae60-a091edf8c071 + - 0507656e-e2aa-4429-a98f-689073c0a56d status: 200 OK code: 200 duration: "" @@ -7028,19 +7325,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:26:19.322788Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"ready","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:54:02.715814Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1422" + - "1467" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:22 GMT + - Wed, 18 Oct 2023 16:54:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7050,7 +7347,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3a37ee4-0bed-4604-9c2a-a1b2685e84dc + - a8598bc5-7a44-4e12-8473-8799ed64fa28 status: 200 OK code: 200 duration: "" @@ -7061,19 +7358,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732/kubeconfig + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e/kubeconfig method: GET response: - body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFFWjNwTlZFVXlUV3BWZWsxc2IxaEVWRTE2VFVSbmVrMVVSVEpOYWxWNlRXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVFRsdENrRmtZa0Y2TkZOc1dWVXdSVVJFY1doaFVtTkRTbk01U1U4NVIwNUxlakJsYmxkMFNTc3hiSGg2Ylc4MGRrZFJTVlF3ZW10blRFdDNlR2hSTDJGSVoyTUtVM0UwUjNoVE5VeHRURkJKZDJGNllWZzFXa0ZvVWtaV2IxY3dTVkFyVVZoNE9UaDNhWGcwY1VFM0wxZ3hSelp4VFdaUUswVnZPUzh3TjBadE1HZG1Od3AyTUV4bU9WQnBhbFY1YkhCcllsZEpORTl6U2xaQlprWkZNR3hPVmsxM1owcG5Ra0pJWm1KS1JHaEJSM2hJYldwbGQzWlNVMGRMTldaVFNHdDJkMVZWQ2twbVdUaG5TRFVyU2tvelRWbDJWbVF3YWpOaFV6RnJielZRYzJaRFNHSk1SV2szUjJneE0zY3pkMFV4TVZCTFIybG5Selo1UWxjNGRGUkhTMWh3VGlzS2IyeHJTRVZRWVZCVVVHOVFZVnBXVUd4cEsydE5kREZwVTA1R09Ua3dRVVZIV0RsSk1XWlVjaXRIUzNoR2RtRXlVVEJzUTNoaE5UTjZTSGRYVFdGUFdBcENZMnhsTjJ4U1pWVXpPVmRGZUZoQlRqUlZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkJOelZSU21oT1RUVTBlRFpsTTBRNWJVMDNha2R1UjNsSWNIWk5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRXRkJqYnpCbGVWSjRSV04xYlhWQk9UUm5jVXhVVWlzd2NHMUlNa1lyUWxaMGNYTm5ka3g0WWtVdmFUbE1Sa1l3T0FveWVrRkJRM1pzTjJ0TU1rVkpjVkkxV21SUE1HMHJVbmQzWjNsNmVUaEphREJGTWt0TGF6TllRMUY2YVN0aVJEQjRkU3Q2WkZKek4xVXdlV2dyWnpBMENpOWFXWEJDWVZCb05FTkNTRzV2YVV4WmVVcHdVMXBhZVhkVU1GUlhXV2x5V1ZFcllrNDVWbVZOYWtveFpGY3lUbXROTVUxTGFXUmlSRGhuUlRSelFYQUtUV2hyVGpGTE1GVkRhQzgyT1hwSlJIbHRhbXg0ZW1semIxbFRZM1ZsSzFwc1dWRlpTRXBRZURWa2JFb3ZRVVJGU0haME9UZFZNVE5qV1ZBd1JHNWlXQXBFZEU1Q1NITnFhVWh3U1N0d1RIZG1kRzFRUzBWQlkzRllWMVJzVEZOMmIweHFRM28xVURRMlVqQXhZVEY1UlZNNWRFRlRlVlZ5YzBwR2RGaHVlak5OQ201TE4wbDBWVTVUWkd0b1VsWldOMU5OVlVoaFZFTkNURmhoWWtFMksySllhREptY1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzk3MGFjMDQzLTk5YWMtNGVlMC1iYmQzLTFhNDRkMjJjMDczMi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBsalNJeHJTcUQwRzJ4aWlaRGl1MGhKZmc1ak53Tld6bDVoYTlQeEp1MzBlUzhYRmhMUWN4c0szcw==","content_type":"application/octet-stream","name":"kubeconfig"}' + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkplazFVUVhoT2VrVXlUbFJOZUUxc2IxaEVWRTE2VFZSQmVFNTZSVEpPVkUxNFRXeHZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVEc0ckNqRjNVRWxEU0c1UmJFNWpWMlZhWms5M1pqZHZNeXRwTjJ0U2NIZEdhakJUTmxsd05uTlRlSEZ6YlhwNVFrazViVzlIYlhwMGFFWnBNV2hvZERrMk1IY0taek5UVWxkdlptTlBSVFJrV1RsTVZUZEZlSGhIZVdaT1pXTnRSR1lyT0dFMGVtaGxZMFJzU2xSa2NYZDVVRWswZDJoekszVXJXbEpaVldSQ1dVdGFUZ28zYkhvMFNERjVWbVl2T0hjM1VXeHVhbGhLWlU1RFoyOHZiazE1TTFKdWFEWm1WMHcyTVV0aFREaE5SVmM1ZVVwMlUxb3lSamhqVEhOdU5sQjVkVlZQQ25kWE1rOXFOMEUyTm5GWk56TkVNa05QTTFsaWRqSnZaVkZHZURaclNIWnVWU3MzV0N0UldIcDFjM0pSYmpGU2JHcDNSVWhEVW5wblkyVXhTbkZ3VWt3S1dYQlpPVWN5YlZwSmVrZFFTbFpqV0VkWk9YTnNSREkyYUZkeGRuZEVkR1U1WkZwR1NVWjVkMFkyVGtsWk9EUjZiblV4V0V0Tk5VaHJWblpzVFZSeVdBb3djWGREUm10UU9IazJPSGxpUlVGYVFtMUZRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWkZNSGN5YlZKemFGQkxVSEZGZGtNdk9HUm5UbGhhWmtWa2VsaE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkRaRUpsUjBGQk0yeFhLMFU0UlN0NVN6aHRTbVZMYW5kQlRFRTJhVGd3Y2xOME1DczVaMXBNVFZCclpUUndVbTlzVVFwdVVuWXplWHAwYUdFMk5tTklZVVZNSzFGU05EWTBMMkZwUkZKelpHdEZTSFpyY1hWdlkzVjBabFJwWm5SRGFUbExNemRMZUhSMVJFSjJVVVEwVmxSUUNuQnpSMkpoWWxWS2NtRlZXazgyTjJKemFTOWFlakJRUlVSdGFHWkxkekpMT1RoeVRrOVhiVVJIT1hWSFRsQTNaV2gzYlVFeVExazNZazVOZDJwWmMwc0tOVEpOVEVSU0wyczNUazh3WVd0NVVtZDVUM0F5T0hwTlIzQlVUbWRPUkhSbmJqQlpjRFJ5WmtSV1dUWmhSWEJHYlVoYVVrcEphMVZFVWtRMFRrbHBad293YzNsVFFYazRhRlpNY0dScWNGTmpiakFyVW1vMmNXNDNNalZKV2tkNmJIVlNMMVoxYlhNeGQzbHpiR1ZHYVhaTVdrOWhLMUpxTUZJMGJHRnhUVGhpQ21GS1kybExjblZKTTNWa1Mxa3JOMkZvTUVsU2NsRnBUbkJ6VlVoTlMyMU5jMGRwUkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovL2RjMDc4NzYzLTQ5MDMtNDc2NS04ZjZmLWVlMzJkODFmODg5ZS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXR5cGUtY2hhbmdlIgogICAgdXNlcjogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBKYVJtOUpMNWJtUWJUQU1HenR4WjUwTDh3RmZka2NOSzBtZThCdzJiN0ZTWUxIU0QyUnhhbUVHRw==","content_type":"application/octet-stream","name":"kubeconfig"}' headers: Content-Length: - - "2620" + - "2622" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:22 GMT + - Wed, 18 Oct 2023 16:54:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7083,7 +7380,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64f51ee6-594b-4461-a1f7-18642ae493c4 + - da5eb5c2-0260-4937-a633-06b3f7fd6467 status: 200 OK code: 200 duration: "" @@ -7094,19 +7391,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732?with_additional_resources=true + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e?with_additional_resources=false method: DELETE response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:26:22.799744778Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:54:08.161769815Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1428" + - "1473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:22 GMT + - Wed, 18 Oct 2023 16:54:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7116,7 +7413,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46b1bba8-0461-486c-9fd5-90a46bad1bb8 + - e85ce315-9088-492a-8d54-50535121645b status: 200 OK code: 200 duration: "" @@ -7127,19 +7424,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:26:22.799745Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:54:08.161770Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:22 GMT + - Wed, 18 Oct 2023 16:54:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7149,7 +7446,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 938c18a3-7760-4dfe-8f42-3d94c66ee56f + - 4d276085-e1ea-4926-b07e-4037f52363cd status: 200 OK code: 200 duration: "" @@ -7160,19 +7457,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://970ac043-99ac-4ee0-bbd3-1a44d22c0732.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-09-01T16:25:31.518016Z","created_at":"2023-09-01T16:25:31.518016Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.970ac043-99ac-4ee0-bbd3-1a44d22c0732.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-09-01T16:26:22.799745Z","upgrade_available":false,"version":"1.28.0"}' + body: '{"admission_plugins":[],"apiserver_cert_sans":[],"audit_log":false,"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://dc078763-4903-4765-8f6f-ee32d81f889e.api.k8s.fr-par.scw.cloud:6443","cni":"kilo","commitment_ends_at":"2023-10-18T16:53:10.838738Z","created_at":"2023-10-18T16:53:10.838738Z","dashboard_enabled":false,"description":"","dns_wildcard":"*.dc078763-4903-4765-8f6f-ee32d81f889e.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"id":"dc078763-4903-4765-8f6f-ee32d81f889e","ingress":"none","name":"test-type-change","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","status":"deleting","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"type":"multicloud","updated_at":"2023-10-18T16:54:08.161770Z","upgrade_available":false,"version":"1.28.2"}' headers: Content-Length: - - "1425" + - "1470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:27 GMT + - Wed, 18 Oct 2023 16:54:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7182,7 +7479,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2393a0d-4e20-45b9-8022-b005741e17a5 + - a67bd479-048a-4cc1-bd23-ca27803e4af4 status: 200 OK code: 200 duration: "" @@ -7193,10 +7490,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"dc078763-4903-4765-8f6f-ee32d81f889e","type":"not_found"}' headers: Content-Length: - "128" @@ -7205,7 +7502,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:32 GMT + - Wed, 18 Oct 2023 16:54:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7215,7 +7512,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ba80011-5e26-4d14-b202-297a730336df + - e600e8de-a828-40b2-b1bd-9258ef7b9284 status: 404 Not Found code: 404 duration: "" @@ -7226,10 +7523,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/970ac043-99ac-4ee0-bbd3-1a44d22c0732 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dc078763-4903-4765-8f6f-ee32d81f889e method: GET response: - body: '{"message":"resource is not found","resource":"cluster","resource_id":"970ac043-99ac-4ee0-bbd3-1a44d22c0732","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"dc078763-4903-4765-8f6f-ee32d81f889e","type":"not_found"}' headers: Content-Length: - "128" @@ -7238,7 +7535,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 01 Sep 2023 16:26:32 GMT + - Wed, 18 Oct 2023 16:54:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -7248,7 +7545,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6c7a569-4b0c-46f9-86e0-d981a314ec37 + - 9ec0fab1-6a5a-49a0-8dc1-1a4beed6a363 status: 404 Not Found code: 404 duration: ""